.exo {
	font-family: "Exo", sans-serif;
	font-optical-sizing: auto;
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: exo, sans-serif;
}

body {
	background-color: #e5f4ff;
}

.navbar {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100vw;
	gap: 5vw;
	border-bottom: dotted black 0.4vh;
	padding: 1vh 0;
	background-color: #ffffff;
}
.navbar a {
	font-size: 2vh;
	font-weight: 400;
}
a {
	color: black;
	text-decoration: none;
}
.logo-container {
	width: 13vw;
	height: 10vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo {
	width: 10vw;
	height: 12vh;
	object-fit: cover;
}

.colors {
	display: flex;
	border-bottom: dotted black 0.4vh;
	padding: 0vh 0vw;
	background-color: #ffffff;
	gap: 0vw;
}
.color {
	width: 25%;
	background-color: #14213d;
	height: 3vh;
	border-radius: 0vh;
}
.color:nth-child(2) {
	background-color: #fca311;
}
.color:nth-child(3) {
	background-color: #4b5563;
}
.color:nth-child(4) {
	background-color: #10b981;
}
.color:nth-child(6) {
	background-color: #fca311;
}
.color:nth-child(7) {
	background-color: #4b5563;
}
.color:nth-child(8) {
	background-color: #10b981;
}

h1 {
	font-size: 5vh;
	font-weight: 500;
	color: #14213d;
	text-align: center;
}

.citations-container {
	background-color: white;
	border-radius: 1vh;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3vh;
	width: 50vw;
	margin: auto;
	padding: 5vh 3vw;
	padding-bottom: 3vh;
	margin-top: 6vh;
	/* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
}
/* 
.heading {
	font-size: 3vh;
	font-weight: 500;
	text-align: center;
} */

.citation {
	width: 100%;
}
.citation h3 {
	font-size: 2.75vh;
	font-weight: 500;
	text-align: left;
}

.citation p {
	font-size: 1.75vh;
	font-weight: 500;
	text-align: left;
	margin-top: 1vh;
}
