@import url('https://fonts.cdnfonts.com/css/milky-walky');

body {
	--color-cream: #F4F1E8;
	--color-dark-green: #638E57;
	--color-light-green: #8CAB67;
	--color-yellow: #FAD68A;
	--color-light-yellow: #F4EBCE;
	--color-pink: #F46898;
	--color-light-pink: #F4A7BE;
	--color-white: #FFFFFF;

	background-color: var(--color-cream);
}

.page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100vw;
	position: relative;
}

.page--about {
	align-items: flex-start;
	justify-content: center;
}

.page--launch {
	height: 100vh;
	p {
		text-align: center;
	}
}

nav {
	position: absolute;
	top: 20px;
	left: 0px;
	width: 100vw;
}


@media (min-width: 650px) {
	nav {
		top: 20px;
		left: auto;
		right: 80px;
		width: fit-content;
	}
}

.menu-options {
	display: flex;
	flex-direction: row;
	gap: 20px;
	list-style-type: none;
	padding-left: 0;
	align-items: center;
	justify-content: center;
}

li.menu-option {
	position: relative;
	text-decoration: none;
}

a.menu-option__link {
	text-decoration: none;
	font-weight: 700;
	color: var(--color-dark-green);
	transition: all 0.3 ease-in-out;
}

.section {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.section--callout {
	margin-top: 4vh;
	background-color: var(--color-light-green);

	p {
		color: var(--color-white);
		width: 55vw;
		margin-top: 2vh;
		margin-bottom: 2vh;
	}
}

.section--content {
	position: relative;
	top: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;

	@media (min-width: 760px) {
		padding-top: 10vh;
		padding-bottom: 10vh;
		padding-left: 80px;
		padding-right: 80px;
	}
}

.section--title {
	align-items: flex-start;
	padding-top: 10vh;
	padding-bottom: 10vh;
	position: relative;
	top: 60px;
}

.section--light {
	background-color: var(--color-white);
}

.section--dark {
	background-color: var(--color-dark-green);
	color: var(--color-white);
}

.heading {
	font-family: "Milky Walky", serif;
	font-size: 64px;
	color: var(--color-cream);
	text-align: left;

	@media (min-width: 650px) {
		font-size: 72px;
	}
}

.heading--launch {
	color: var(--color-dark-green);
	text-align: center;
	width: 50vw;

	&:after {
		content: "";
	  width: 20px;
	  height: 2px;
	  background: var(--color-dark-green);
		padding-left: 12px;
	  display: inline-block;
		animation: cursor-blink 1.5s steps(2) infinite;
	}
}

.subheading {
	width: 100%;
	text-align: left;
	font-family: "Figtree", sans-serif;
	font-weight: 700;
	font-size: clamp(32px, 5vw, 48px);
	margin-bottom: 24px;
}

.paragraph, p, ul {
	width: 100%;
	font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 14px;

	@media (min-width: 650px) {
		font-size: 16px;
	}
}

.awards {
	display: flex;
	flex-direction: column;
	width: 100%;
	row-gap: 16px;
	font-size: 14px;

	@media (min-width: 650px) {
		font-size: 16px;
	}
}

.award {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-white);
}

.award-top {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	@media (min-width: 650px) {
		flex-direction: row;
	}
}

.award-category {
	font-weight: 700;
}

.award-organization {
	@media (max-width: 650px) {
		font-style: italic;
	}
}

.award-project a {
	text-decoration: none;
}

span.emphasis {
	font-weight: 700:
}

a {
	color: var(--color-dark-green);
	text-decoration: none;
	transition: color 0.3s ease-in-out;

	&:hover {
		color: var(--color-pink);
		cursor: pointer;
		pointer-events: all;
	}

	.section--dark & {
		color: var(--color-cream);

		&:hover {
			color: var(--color-white);
		}
	}
}

.clips {
	display: grid;
}

@keyframes cursor-blink {
	from, to {
	  color: transparent;
	}

	50% {
		color: var(--color-dark-green);
	}
}
