﻿*,
*:after,
*:before {
	box-sizing: border-box;
}

html {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	height: 100%;
	width: 100%;
}

body {
	background-color: #dde2e8;
	background-image: url('/assets/background.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}

#container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	background-color: rgba(255,255,255, 0.9);
	padding: 20px 40px;
	border-radius: 50px;
}

#logo {
	width: 225px;
	margin: 75px;
}

a {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-weight: bold;
	color: #75BC23;
}

.links {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}