/* Theming */
:root {
	--maincolor: #00438C;
	--textcolor: #E7EFF5;
	--navbar-color: var(--maincolor);
	--navbar-text-color: var(--textcolor);
}

html {
	color: var(--textcolor);
	background: var(--maincolor);
}

body {
	box-sizing: border-box;
	line-height: 2.5;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

.column-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.logo {
	font-family: 'Playfair', serif;
	font-weight: 300;
	color: var(--navbar-text-color);
	letter-spacing: -1px;
	margin-left: 3rem;
	line-height: 1;
	font-size: 30vw;
	margin: 0;
}

.icon {
	position: fixed;
	bottom: 0;
	left: 0;
	padding: 0.5em;
	background: var(--maincolor);
	width: 8em;
	height: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20%;
	cursor: pointer;
	margin: 20px;
}

.footer {
	position: fixed;
	left: 100px;
	bottom: 100px;
	width: 100%;
	background-color: var(--maincolor);
	text-align: center;
}
