@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Merriweather+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@font-face {
	font-family: signatureFont;
	src: url(../../res/fonts/Gellatio\ Regular.ttf);
}
:root {
	/* VARIABLES */
	--main-background: #fef9ee;
	--secondary-background: #fff;
	--main-font-color: #756a43;
	--secondary-font-color: #fff;
	--footer-color: #756a43;

	--nav-height: 90px;
}

* {
	font-family: 'Epilogue', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.max-width {
	max-width: 670px;
	margin-left: auto;
	margin-right: auto;
}

body {
	margin: 0 auto;
}
/* 
p {
	line-height: 16px;
}
 */
.main-background {
	background-color: var(--main-background);
}

.nav-wrapper {
	width: 100%;
	/* 	border-bottom: 1px solid black;
 */
	box-shadow: 0 2px 10px grey;
	background-color: var(--main-background);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}

nav {
	height: var(--nav-height);
	background-color: var(--main-background);
	position: relative;

	/* put some shadow bottom here */
}

.her-er-vi-button {
	margin-left: 50px;
	height: 100%;
	align-self: center;
	border: none;
	background: inherit;
	position: absolute;
	left: 0;
	display: grid;
	align-content: center;
}

.til-startside {
	position: absolute;
	right: 0;
	height: 100%;
	border: none;
	background-color: inherit;
	margin-right: 50px;
	display: grid;
	align-content: center;
}
