@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Handjet:wght@100..900&display=swap');

body {
	font-family: "Handjet", serif;
}

.hero {
	position: fixed;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	width: 80vmin;
	height: 80vmin;
}
.hero > img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: 1s ease-out;
	box-sizing: border-box;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5)) grayscale(0.3);
}
.downarrow {
	position: absolute;
	left: 50%;
	bottom: 4vmin;
	translate: -50% -50%;
	font-size: 3vmin;
	border: solid 1px black;
	width: 6vmin;
	height: 6vmin;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100vmin;
	animation: wiggle-bounce 1s ease-in-out infinite;
	background-color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@keyframes wiggle-bounce {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  15% {
    transform: translateY(0) rotate(-10deg);
  }
  30% {
    transform: translateY(0) rotate(10deg);
  }
  45% {
    transform: translateY(0) rotate(0deg);
  }

  60% {
    transform: translateY(-20px) rotate(0deg);
  }
  75% {
    transform: translateY(0) rotate(0deg);
  }
  85% {
    transform: translateY(-10px) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.content {
	position: absolute;
	left: 0;
	top: 100vh;
	width: 100%;
	min-height: 100vh;
	padding: 30px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}

h1, h2 {
	margin: 0;
}
h1, .big {
	font-style: italic;
	font-family: "Libre Caslon Text", serif;
}
.big {
	font-size: 60px;
	margin-top: 20px;
	margin-bottom: 10px;
}
h2 {
	font-size: 30px;
	font-weight: 400;
	width: fit-content;
	position: relative;
	z-index: 2;
	background-color: white;
	padding: 10px;
	border: solid 1px black;
	margin-bottom: 20px;
	margin-top: 20px;
}
.mainTitle {
	font-size: 30px;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.textChunk {
	max-width: 500px;
}

.dollaSect {
	padding-top: 200px;
}
.statSection {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	max-width: 800px;
}
.statSection:nth-child(odd of .statSection) {
	align-items: start;
}
.statSection:nth-child(even of .statSection) {
	align-items: end;
}
.stack {
	padding: 10px;
	box-sizing: border-box;
	position: relative;
	z-index: -1;
	width: 100%;
}
.stack > img {
	position: absolute;
	bottom: 0;
	left: 50%;
	translate: -50% 0;
	max-height: 10vh;
	aspect-ratio: 566/248;
}

.imageSection {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	max-width: 800px;
}
.images {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	max-width: 100%;
	flex-wrap: wrap;
}
.imageSection > .images > img {
	flex: 1;
	max-width: 100%;
	max-width: 233px;
	transition: 0.5s;
}

.grid {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	max-width: 500px;
}
.grid > img {
	width: 50px;
	transition: 0.5s;
}

a {
	color: black;
	text-decoration: underline;
	position: relative;
	transition: 0.2s;
}
a:hover {
	scale: 1.1;
}

a {
	background: linear-gradient(to right, black 50%, white 50%);
	background-size: 200% 100%;
	background-position: 100% 0;
}

.pfp {
	width: 150px;
	max-width: 40%;
	margin: 5px;
	position: relative;	
	transition: 0.5s;
}
.pfp > img {
	width: 100%;
	object-fit: cover;
	transition: 0.2s;
	border-radius: 10px 10px 0 0;
}
.pfp:hover > img {
	scale: 1.05;
}
.pfp > .deets {
	background-color: rgba(0, 0, 0, 0.05);
	color: black;
	padding: 10px;
	border-radius: 0 0 10px 10px;
}
h3 {
	margin: 0;
}
.deets > p, .trigger {
	margin: 0;
}
.team {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: end;
	width: 80%;
}

.donateCTA {
	background: none;
	background-color: black;
	padding: 10px;
	margin: 10px;
	margin-top: 20px;
	color: white;
	text-decoration: none;
	font-size: 20px;
	text-transform: lowercase;
	width: 300px;
	max-width: 80%;
	border-radius: 100vmin;
	text-align: center;
	z-index: 2;
}

h2 > i {
	font-family: "Libre Caslon Text", serif;
	font-size: 25px;
}