@import url("https://fonts.bunny.net/css?family=allerta:400");

@font-face {
	font-family: BakBakOne;
	src: url("./fonts/BakbakOne-Regular.ttf");
}

/* This animation was originally made in https://github.com/Tumbleweed-64/NautilusV2, go check it out! */
@keyframes floaty {
	0% {top: -5px;}
	20% {top: -3px;}
	40% {top: -1px;}
	60% {top: 1px;}
	80% {top: 3px;}
	100% {top: 5px;}
}

body {
	background-color: #1e1c1c;
	color: #2c8c0f;
	text-align: center;
	font-family: "Allerta", sans-serif;
}

h1 {
	font-family: BakBakOne;
	font-size: 300%;
	position: relative;
	animation-name: floaty;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

p {
	font-family: "Allerta", sans-serif;
}

a:link {
	background-color: #0d1954;
	border: 1px solid #0d1954;
	border-radius: 1em;
	color: white;
	text-decoration: none;
	/* We need the link symbol *and* the background color to make it look good */
	background: url("./img/link_symbol.svg") no-repeat left center, #0d1954 no-repeat center;
	padding-left: 25px;
}

a:visited {
	color: grey;
	text-decoration: underline;
}

a:hover {
	text-decoration: underline;
}

a:active {
	background-color: #2c8c0f;
}

.flex-container {
	display: flex;
	flex-direction: row;
}
