#assignment {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	background-color: #eee;
	padding: 1rem;

	a {
		color: #477ca7;

		&:active {
			filter: brightness(0.6);
		}
	}

	main {
		.title {
			text-align: center;
		}

		.borlaug-image {
			background-color: #fff;
			display: flex;
			flex-direction: column;
			align-items: center;
		}

		.borlaug-life {
			display: grid;
			grid-template-rows: max-content max-content;
			grid-template-columns: 40rem;
			justify-content: center;

			h2 {
				text-align: center;
			}

			ul {
				display: flex;
				flex-direction: column;
				gap: 1.5rem;
				list-style-type: none;
				padding-left: 1rem;

				li {
					position: relative;

					&::before {
						content: "\25CF";
						position: absolute;
						left: -1rem;
					}
				}
			}

			.borlaug-quote {
				font-style: italic;

				> * {
					padding-left: 0;
					margin-left: 0;
				}
				blockquote p::before {
					content: "\201C";
				}

				blockquote p::after {
					content: "\201D";
				}
			}
		}
	}

	footer {
		text-align: center;
		font-size: 1.1rem;
		font-weight: bold;
	}
}
