/* Upgrade Thin
font-family: upgrade-lights, sans-serif;
font-weight: 200;
font-style: normal; 

Upgrade Extra Light
font-family: upgrade-lights, sans-serif;
font-weight: 300;
font-style: normal;

Upgrade Light
font-family: upgrade-lights, sans-serif;
font-weight: 400;
font-style: normal;

Upgrade Book
font-family: upgrade-lights, sans-serif;
font-weight: 500;
font-style: normal;

Upgrade Regular
font-family: upgrade, sans-serif;
font-weight: 300;
font-style: normal;

Upgrade Medium
font-family: upgrade, sans-serif;
font-weight: 400;
font-style: normal;

Upgrade Semibold
font-family: upgrade, sans-serif;
font-weight: 500;
font-style: normal;

Artikler 03.08.22

Quicksand Light
font-family: quicksand, sans-serif;
font-weight: 300;
font-style: normal; 

Quicksand Regular
font-family: quicksand, sans-serif;
font-weight: 400;
font-style: normal;

Quicksand Medium
font-family: quicksand, sans-serif;
font-weight: 500;
font-style: normal;

Quicksand Bold
font-family: quicksand, sans-serif;
font-weight: 700;
font-style: normal; */

:root {
	--white: #FFFBF6;
	--black: #272727;
	--peachpink: #fe9785;
	--green: #708D77;
	--imageborder: #DDDADA;
}

/* OVERSKRIFT */
h1 {
	font-family: quicksand, sans-serif;
	font-weight: 500;
	font-style: normal;
}

/* BRØDTEKST */
h2 {
	font-family: quicksand, sans-serif;
	font-weight: 400;
	font-style: normal;
}

/* menu links */
h3 {
	font-family: upgrade-lights, sans-serif;
	font-weight: 400;
	font-style: normal;
}

/* FIGCAPTION */
h4 {
	font-family: upgrade-lights, sans-serif;
	font-weight: 300;
	font-style: normal;
	text-align: center;
	letter-spacing: 0.2rem;
}

p {
	font-family: quicksand, sans-serif;
	font-weight: 300;
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
}

html {
	background-color: var(--white);
	color: var(--black);
	margin: auto;
	scroll-behavior: smooth;
}

/* COMPUTER */
@media only screen and (min-width: 1200px)  {
	
/* HEADER */

	#navbar {
		background-color: var(--white);
		top: 0;
		transition: top 1s;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		position: fixed;
		width: 100%;
		border-bottom: solid 0.5px var(--green);
	}

	#menu {
		display: flex;
		justify-content: flex-start;
		width: 33.3%;
		margin: 2rem;
	}

	#logo {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 33.3%;
		margin: 1rem;
	}

	#fyld {
		display: flex;
		justify-content: flex-end;
		width: 33.3%;
		margin: 2rem;
	}
	
	/* The Overlay (background) */
	.overlay {
		/* Height & width depends on how you want to reveal the overlay (see JS below) */   
		height: 100%;
		width: 0;
		position: fixed; /* Stay in place */
		z-index: 1; /* Sit on top */
		left: 0;
		top: 0;
		background-color: var(--black); /* Black fallback color */
		opacity: 90%;
		overflow-x: hidden; /* Disable horizontal scroll */
		transition: 1s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
	}
	
	/* Position the content inside the overlay */
	.overlay-content {
		position: relative;
		top: 25%; /* 25% from the top */
		width: 100%; /* 100% width */
		text-align: center; /* Centered text/links */
		margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
	}
	
	/* The navigation links inside the overlay */
	.overlay a {
		padding: 8px;
		text-decoration: none;
		font-size: 2rem;
		color: var(--white);
		display: block; /* Display block instead of inline */
		transition: 0.3s; /* Transition effects on hover (color) */
	}
	
	/* When you mouse over the navigation links, change their color */
	.overlay a:hover, .overlay a:focus {
		color: var(--green);
	}
	
	/* Position the close button (top right corner) */
	.overlay .closebtn {
		position: absolute;
		top: 20px;
		right: 45px;
		font-size: 60px;
	}

	.kryds-ikon {
		margin: 2rem;
	}

	.menu-ikon {
		width: 2.3rem;
		margin-top: 0.5rem;
	}

	.logo {
		width: 5rem;
	}

/* MAIN */

	main {
		margin-top: 15rem;	
	}


	#ikoner {
		margin: 0rem 25rem;
	}

	.genveje {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		width: 100%;
	}

	.imgfig {
		width: 5rem;
		font-size: 1rem;
		line-height: 2rem;
	}

	.sol {
		width: 33.3%;
		display: flex;
		justify-content: flex-start;
	}

	.journal {
		width: 33.3%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.nyheder {
		width: 33.3%;
		display: flex;
		justify-content: flex-end;
	}

	/* ANIMATION til ikonerne */
	.sol img:hover, 
	.journal img:hover, 
	.nyheder img:hover {
		animation: bounce 1.5s ease-in-out infinite;
	}

	@keyframes bounce {
		0%, 
		20%, 
		60%, 
		100% {
			transform: translateY(0);
		}
		40% {
			transform: translateY(-1.5rem);
		}
		80% {
			transform: translateY(-1rem);
		}
	}

	#velkommen {
		margin: 2rem 10rem;
	}

	.velkomst {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		width: 100%;
	}

	.leaogleon {
		width: 50%;
		margin: 5rem;
	}

	.velkommentekst {
		width: 50%;
		margin: 5rem;
		text-align: right;
	}

	.velkommentekst h1 {
		margin-bottom: 2rem;
		font-size: 1.8rem;
		color: var(--black);
	}

	.velkommentekst h2 {
		font-size: 1rem;
		line-height: 2.2rem;
		color: var(--black);
	}

/* FOOTER */
	footer {
		background-color: #708D77;
		/* white-space */
		padding: 2.5rem 10rem;
	}

	#footer {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		width: 100%;
	}
	
	.navigation {
		width: 33.3%;
		line-height: 2.3rem;
		display: flex;
		flex-direction: column;
		justify-content: flex-start; 
		justify-content: space-around;
	}

	.navigation h3 {
		color: var(--white);
	}

	footer a {
		text-decoration: none;
	}

	.logofoot {
		width: 33.3%;
		display: flex;
		justify-content: center; 
		align-items: center;
		margin-top: 3rem;
	}

	.img {
		width: 8rem;
	}

	.flex3 {
		width: 33.3%;
		display: flex;
		justify-content: flex-end; 
	}

	.some {
		display: flex;
		flex-direction: column;
	}

	.img2 {
		width: 3rem;
		margin: 1rem;
	}

	.img3 {
		width: 3rem;
		margin: 1rem;
	}

	.copyright {
		color: var(--white);
		margin-top: 3rem;
		margin-bottom: -2.3rem;
		font-size: 0.6rem;
	}
}

/* MELLEM */
@media only screen and (min-width: 850px) and (max-width: 1200px)  {
	
/* HEADER */
	#navbar {
		background-color: var(--white);
		top: 0;
		transition: top 1s;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		position: fixed;
		width: 100%;
		border-bottom: solid 0.5px var(--green);
	}
	
	#menu {
		display: flex;
		justify-content: flex-start;
		width: 33.3%;
		margin: 2rem;
	}
	
	#logo {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 33.3%;
		margin: 1rem;
	}
	
	#fyld {
		display: flex;
		justify-content: flex-end;
		width: 33.3%;
		margin: 2rem;
	}
	
		
	/* The Overlay (background) */
	.overlay {
		/* Height & width depends on how you want to reveal the overlay (see JS below) */   
		height: 100%;
		width: 0;
		position: fixed; /* Stay in place */
		z-index: 1; /* Sit on top */
		left: 0;
		top: 0;
		background-color: var(--black); /* Black fallback color */
		opacity: 90%;
		overflow-x: hidden; /* Disable horizontal scroll */
		transition: 1s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
	}
	
	/* Position the content inside the overlay */
	.overlay-content {
		position: relative;
		top: 25%; /* 25% from the top */
		width: 100%; /* 100% width */
		text-align: center; /* Centered text/links */
		margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
	}
		
	/* The navigation links inside the overlay */
	.overlay a {
		padding: 8px;
		text-decoration: none;
		font-size: 2rem;
		color: var(--white);
		display: block; /* Display block instead of inline */
		transition: 0.3s; /* Transition effects on hover (color) */
	}
		
	/* When you mouse over the navigation links, change their color */
	.overlay a:hover, .overlay a:focus {
		color: var(--green);
	}
		
	/* Position the close button (top right corner) */
	.overlay .closebtn {
		position: absolute;
		top: 20px;
		right: 45px;
	}
	
	.kryds-ikon {
		margin: 2rem;
	}
	
	.menu-ikon {
		width: 2rem;
		margin-top: 0.4rem;
	}
	
	.logo {
		width: 5rem;
	}
	
/* MAIN */

	main {
		margin-top: 12rem;	
	}
	
	#ikoner {
		margin: 5rem 15rem;
	}
	
	.genveje {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		width: 100%;
	}
	
	.imgfig {
		width: 5rem;
		font-size: 1rem;
		line-height: 2rem;
	}
	
	.sol {
		width: 33.3%;
		display: flex;
		justify-content: flex-start;
	}
	
	.journal {
		width: 33.3%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.nyheder {
		width: 33.3%;
		display: flex;
		justify-content: flex-end;
	}
	
	#velkommen {
		margin: 5rem 5rem;
	}
	
	.velkomst {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		width: 100%;
	}
	
	.leaogleon {
		width: 50%;
		margin: 5rem;
	}
	
	.velkommentekst {
		width: 50%;
		margin: 5rem;
		text-align: right;
	}
	
	.velkommentekst h1 {
		margin-bottom: 2rem;
		font-size: 1.5rem;
		color: var(--black);
	}
	
	.velkommentekst h2 {
		font-size: 0.8rem;
		line-height: 1.8rem;
		color: var(--black);
	}
	
/* FOOTER */
	footer {
		background-color: #708D77;
		/* white-space */
		padding: 2.5rem 10rem;
	}
	
	#footer {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		width: 100%;
	}
		
	.navigation {
		width: 33.3%;
		line-height: 2rem;
		display: flex;
		flex-direction: column;
		justify-content: flex-start; 
		justify-content: space-around;
	}
	
	.navigation h3 {
		color: var(--white);
	}
	
	footer a {
		text-decoration: none;
	}
	
	.logofoot {
		width: 33.3%;
		display: flex;
		justify-content: center; 
		align-items: center;
		margin-top: 3rem;
	}
	
	.img {
		width: 8rem;
	}
	
	.flex3 {
		width: 33.3%;
		display: flex;
		justify-content: flex-end; 
	}
	
	.some {
		display: flex;
		flex-direction: column;
	}
	
	.img2 {
		width: 3rem;
		margin: 1rem;
	}

	.img3 {
		width: 3rem;
		margin: 1rem;
	}
	
	.copyright {
		color: var(--white);
		margin-top: 3rem;
		margin-bottom: -2.3rem;
		font-size: 0.6rem;
	}
}

/* MOBIL */
@media only screen and (max-width: 850px)  {
/* HEADER */
	#navbar {
		background-color: var(--white);
		top: 0;
		transition: top 1s;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		position: fixed;
		width: 100%;
		border-bottom: solid 0.5px var(--green);
	}


	#menu {
		display: flex;
		justify-content: flex-start;
		width: 33.3%;
		margin: 2rem;
	}

	#logo {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 33.3%;
		margin: 1rem;
	}

	#fyld {
		display: flex;
		justify-content: flex-end;
		width: 33.3%;
		margin: 2rem;
	}


	/* The Overlay (background) */
	.overlay {
		/* Height & width depends on how you want to reveal the overlay (see JS below) */   
		height: 100%;
		width: 0;
		position: fixed; /* Stay in place */
		z-index: 1; /* Sit on top */
		left: 0;
		top: 0;
		background-color: var(--black); /* Black fallback color */
		opacity: 90%;
		overflow-x: hidden; /* Disable horizontal scroll */
		transition: 1s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
	}

	/* Position the content inside the overlay */
	.overlay-content {
		position: relative;
		top: 25%; /* 25% from the top */
		width: 100%; /* 100% width */
		text-align: center; /* Centered text/links */
		margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
	}

	/* The navigation links inside the overlay */
	.overlay a {
		padding: 8px;
		text-decoration: none;
		font-size: 1.5rem;
		color: var(--white);
		display: block; /* Display block instead of inline */
		transition: 0.3s; /* Transition effects on hover (color) */
	}

	/* When you mouse over the navigation links, change their color */
	.overlay a:hover, .overlay a:focus {
		color: var(--green);
	}

	/* Position the close button (top right corner) */
	.overlay .closebtn {
		position: absolute;
		top: 20px;
		right: 45px;
		width: 1.5rem;
	}

	.kryds-ikon {
		margin: 1.5rem;
	}

	.menu-ikon {
		width: 1.5rem;
	}

	.logo {
		width: 4rem;
	}

/* MAIN */
	main {
		margin-top: 10rem;	
	}

	#ikoner {
		margin: 5rem 4rem;
	}

	.genveje {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: baseline;
		width: 100%;
	}

	.imgfig {
		width: 3.5rem;
		font-size: 0.6rem;
		line-height: 2rem;
	}

	.sol {
		width: 33.3%;
		display: flex;
		justify-content: flex-start;
	}

	.sol figcaption {
		display: inline-block;
		text-align: center;
	}

	.journal {
		width: 33.3%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.nyheder {
		width: 33.3%;
		display: flex;
		justify-content: flex-end;
	}

	#velkommen {
		margin: 5rem 2rem;
	}

	.velkomst {
		display: flex;
		flex-direction: column;
		justify-content: space-around;
	}

	.leaogleon {
		width: 100%;
		justify-content: center;
		align-items: center;
	}

	.velkommentekst {
		margin: 5rem 0rem;
		width: 100%;
	}

	.velkommentekst h1 {
		text-align: center;
		margin-bottom: 2rem;
		font-size: 1.3rem;
		color: var(--black);
	}

	.velkommentekst h2 {
		text-align: left;
		font-size: 0.8rem;
		line-height: 2.2rem;
		color: var(--black);
	}

/* FOOTER */
	footer {
		background-color: #708D77;
		/* white-space */
		padding: 2.5rem 2rem;
	}

	#footer {
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		width: 100%;
	}

	.navigation {
		line-height: 2.3rem;
		display: flex;
		flex-direction: column;
		justify-content: center; 
		align-items: center;		
		justify-content: space-around;
		order: 1;
	}

	.navigation h3 {
		color: var(--white);
	}

	footer a {
		text-decoration: none;
	}

	.logofoot {
		display: flex;
		justify-content: center; 
		align-items: center;
		margin-top: 3rem;
		order: 0;
	}

	.img {
		width: 8rem;
		margin-bottom: 2rem;
	}

	.flex3 {
		display: flex;
		justify-content: center; 
		align-items: center;	}

	.some {
		display: flex;
		flex-direction: row;
		margin-bottom: 2rem;
		order: 2;
	}

	.img2 {
		width: 3rem;
		margin: 1rem;
	}

	.img3 {
		width: 3.25rem;
		margin: 1rem;
		padding-top: 0.25rem;
	}

	.copyright {
		color: var(--white);
		margin-top: 3rem;
		margin-bottom: -2rem;
		font-size: 0.4rem;
	}
}


