@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");

* {
	box-sizing: border-box;
}

body {
	font-family: "JetBrains Mono", "Courier New", Courier, monospace;
	font-size: 13px;
	max-width: 100vw;
	min-height: 100vh;
	padding: 30px;
	overflow-x: hidden;
}

.sections-container {
	display: grid;
	width: 100%;
	gap: 12px;
	max-width: 100vw;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

section {
	background: #f4f4f4;
	margin-bottom: 20px;
	padding: 0 20px 10px 20px;
	border-radius: 10px;
}

h1 {
	font-size: 30px;
	margin: 20px auto;
	text-align: center;
}

h2 {
	text-transform: uppercase;
	margin: 20px 0 10px 0;
}

.description {
	margin: 0 0 10px 15px;
	font-style: italic;
}

.checkbox-container {
	margin: 0 0 10px 15px;
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
}

.checkbox {
	box-sizing: border-box;
	height: 15px;
	width: 15px;
	border: 1px solid black;
	border-radius: 3px;
	padding: 2px;
	cursor: pointer;
}

.checkbox::after,
[class="checkbox half"]::after,
[class="checkbox full"]::after {
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	border-radius: 2px;
}

[class="checkbox half"]::after {
	background: linear-gradient(135deg, black 50%, transparent 50%);
}

[class="checkbox full"]::after {
	background: black;
}

.list-link {
	display: block;
	margin-bottom: 10px;
}
