@import url('https://fonts.googleapis.com/css2?family=Belanosima&display=swap');

:root {
	font-family: sans-serif;
	background-image: linear-gradient(to bottom right, #5c6 , #557);
	background-size: cover;
	font-family: 'Belanosima', sans-serif;
	height:100%;
	background-attachment: fixed;
}

div.main{
	height: 80%;
	width: fit-content;
	margin: auto;
	padding: 40px;
	padding-top: 0px;
	align-items: center;
	font-size: 32px;
	transition-duration: 0.2;
	transition: all 200ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
}

img.logo {
	display: block;
	align-self: center;
	max-width: 600px;
	filter: drop-shadow(0px 0px 5px #112);
	transition-duration: 0.2;
	transition: all 200ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
}

div.logo {
	align-items: center;
	display: flex;
}

.bold{
	font-weight: bold;
}

.italic{
	font-style: italic;
}

.centered {
	width: 100%;
	text-align: center;
}

a {
	color: #4E5EEE;
	display: inline-block;
	margin-bottom: 10px;
	width: 150px;
	font-size: 25pt;
	text-align: center;
	transition-duration: 0.2;
	transition: all 200ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
	scale: 1;
}

a.link {
	filter: drop-shadow(0px 0px 5px #112);
	width: fit-content;
	font-size: 16pt;
}

a:hover {
	scale: 1.1;
	color: #89F;
}

a.btn {
	text-decoration: none;
	border: 2px solid #dee;
	color: #dee;
	border-radius: 10px;
	padding: 5px 10px 5px 10px;
	display: inline-block;
	margin-bottom: 10px;
	width: 150px;
	font-size: 25pt;
	text-align: center;
	box-shadow: 0px 0px 0px 0px #aab inset;
}

a.btn:hover {
	box-shadow: 0px 0px 10px 5px #aab inset;
}

.padbtn {
	margin-bottom: -30px;
}

/* For mobile phones and other small screens */
@media only screen and (max-width: 550px) {
	a {
		width: 100%;
	}

	img.logo {
		max-width: 550px;
		width: 96vw;
		position: absolute;
		left: 0;
		top: 10px;
	}

	div.main {
		padding-top: 30px;
	}
}

p.credit {
	font-size: 16pt;
	text-align: center;
}