@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap');

body {
	background-color: #440011;
	color: #99ff99;
	font-family: "Oxanium", sans-serif;
	font-optical-sizing: auto;
	font-weight: 800;
	font-style: normal;
}

a {
	color: #ff99ff;
}

#flex {
	display: flex;
}

#flex>h1 {
	padding-left: 10px;
}

#header>img {
	padding-left: 0px;
	padding-right: 0px;
}

#flex2 {
	display: flex;
	align-items: center;
	justify-content: center;
}

#centre {
	text-align: center;
}

#round {
	border-radius: 25px;
}

#extraround {
	border-radius: 35%;
}

/* #header {   display: flex;   justify-content: space-around;   text-align: left;   background-color: #111111;   position: sticky;   top: 0px; } */
@keyframes header-move-and-size {
	from {
		opacity: 1;
	}

	to {
		opacity: 0.2;
	}
}

#header {
	display: flex;
	justify-content: space-around;
	text-align: left;
	position: sticky;
	background-color: #111111;
	top: 0px;
	border-radius: 0px 0px 30px 30px;
	animation: header-move-and-size linear forwards;
	animation-timeline: scroll();
	animation-range: 0vh 25vh;
}

@keyframes header-hover {
	from {
		opacity: 1;
	}

	to {
		opacity: 1;
	}
}

#header:hover {
	display: flex;
	justify-content: space-around;
	text-align: left;
	position: sticky;
	background-color: #111111;
	top: 0px;
	border-radius: 0px 0px 30px 30px;
	animation: header-hover;
	animation-timeline: scroll();
	animation-range: 0vh 25vh;
}

#imggrid {
	justify-content: space-evenly;
	justify-items: center;
	display: flex;
	text-align: center;
	flex-direction: row;
	flex-wrap: wrap;
}

#define {
	color: #9999ff;
}

/* Popup container */
.popup {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
	visibility: hidden;
	width: 160px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 8px 0;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
	visibility: visible;
	-webkit-animation: fadeIn 1s;
	animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
