/* --------------------------------- ANDET --------------------------------- */

* {
	margin: 0;
	padding: 0;
	outline: none;
	font-size: small;
	box-sizing: border-box;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
	width: 100vw;
	height: 100vh;
	padding: 25px;
	overflow: hidden;
	background-color: var(--primaryColor);
}

a {
	font-weight: bold;
	text-decoration: none;
	color: var(--primaryLink);
}

a:hover {
	text-decoration: underline;
}

a::after {
	content: "";
	width: 1rem;
	height: 1rem;
	margin-left: 5px;
	display: inline-block;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("/imgs/link.svg");
}

p {
	color: var(--primaryText);
}

button {
	border: none;
	padding: 10px;
	cursor: pointer;
	font-weight: bold;
	border-radius: 5px;
	color: var(--primaryColor);
	background-color: var(--primaryLink);
}

button:hover {
	background-color: var(--primaryButton);
}

.none,
.hidden {
	display: none;
}

/* --------------------------------- HEADER --------------------------------- */

#top-content {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#top-content h2 {
	font-size: 5vw;
	color: white;
	text-align: center;
	font-family: Georgia, 'Times New Roman', Times, serif;
}

/* --------------------------------- TOP BAR --------------------------------- */

#content .top-bar {
	width: 100%;
	display: flex;
	margin-top: 2.5vw;
	justify-content: center;
}

#content .top-bar li {
	width: 38.4vh;
	box-shadow: none;
	border-radius: 25px;
	transition: box-shadow 0.5s;
}

#content .top-bar li figure {
	cursor: pointer;
	height: 227.267px;
	position: relative;
}

#content .top-bar li figure img {
	border-radius: 25px;
}

#content .top-bar li:hover {
	box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.5);
}

#content .top-bar li figure h1 {
	left: 22%;
	top: 32%;
	font-size: 3.84vh;
	color: white;
	position: absolute;
	font-family: "Quantico";
	text-shadow: 0px 0px 10px black;
}

#content .top-bar li figure p {
	left: 0%;
	top: 52%;
	color: white;
	font-size: 1.92vh;
	text-align: center;
	position: absolute;
	text-shadow: 0px 0px 10px black;
}