/* 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;

h5:
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;
	--yellow: #ffcc66;
	--hover: #F7F2EC;
}

/* OVERSKRIFT */
h1 {
	font-family: upgrade-lights, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.8rem;
	letter-spacing: 0.8rem;
}

/* overskrift til artikel */
h2 {
	font-family: quicksand, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.6rem;
}

/* 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;
}

h5 {
	font-family: quicksand, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1rem;
	margin-top: 2rem;
}

/* BRØDTEKST */
p {
	font-family: quicksand, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1rem;
	line-height: 2.5rem;
}

* {
	margin: 0;
	padding: 0;
}

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

.right img, 
.left img {
	border: 1px solid var(--hover);
}

.reveal {
	position: relative;
	transform: translateY(1px);
	opacity: 0;
	transition: all 1s ease;
}

.reveal.active {
	transform: translateY(0px);
	opacity: 1;
}

#navbar {
	z-index: 1;
}


/* 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: 3rem 10rem; /* whitespace */
	}

	#dato {
		margin: 12rem 12rem 6rem 12rem;
		text-align: center;
		color: var(--black);
	}

	.artikel {
		display: flex;
		flex-direction: column;
		justify-content: baseline;
	}

	.one {
		display: flex;
		flex-direction: row;
	}

	.two {
		display: flex;
		flex-direction: row;
	}

	.left {
		width: 50%;
		float: left;
		text-align: left;
		padding: 0rem 2rem;
	}

	.left p, .right p {
		margin-top: 2rem;
	}


	.right {
		width: 50%;
		float: right;
		text-align: right;
		padding: 0rem 2rem;
	}

	.video {
		margin-top: 5rem;
	}

	.billede1 {
		width: 80%;
		padding-left: 2rem;
	}

	* {box-sizing:border-box}

	/* Slideshow container */
	.slideshow-container {
		margin: auto;
		width: 75%;
	}

	/* Hide the images by default */
	.mySlides, .mySlides2, .mySlides3, .mySlides4, .mySlides5, .mySlides6, .mySlides7 {
		display: none;
	}

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

	/* Next & previous buttons */
	.prev, .next{
		cursor: pointer;
		position: absolute;
		top: 50%;
		color: var(--black);
		font-weight: bold;
		transition: 0.6s ease;
		user-select: none;
	}

	/* Position the "next button" to the right */
	.next {
		right: 0;
		border-radius: 3px 0 0 3px;
	}

	.prev {
		left: 0;
		border-radius: 3px 0 0 3px;
	}

	/* Number text (1/3 etc) */
	.numbertext {
		color: var(--black);
		top: 0;
		text-align: center;
	}

	/* Fading animation */
	.fade {
		animation-name: fade;
		animation-duration: 1.5s;
	}

	@keyframes fade {
		from {opacity: .4}
		to {opacity: 1}
	}

	.tothetop h4 {
		color: var(--black);
		text-decoration: none;
		margin-top: 10rem;
	}

	.tothetop h4:hover {
		font-family: upgrade-lights, sans-serif;
		font-weight: 500;
		font-style: normal;
	}

	.tothetop a {
		text-decoration: none;
	}

	#tilbage {
		float: left;
	}

	#tilbage h4 {
		color: var(--black);
		font-family: upgrade-lights, sans-serif;
		font-weight: 400;
		font-style: normal;
	}

	#tilbage h4:hover {
		font-family: upgrade-lights, sans-serif;
		font-weight: 700;
		font-style: normal;
	}

	#tilbage a {
		text-decoration: none;
	}

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

	#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: 2rem 5rem; /* whitespace */
}

#dato {
	margin: 12rem 12rem 6rem 12rem;
	text-align: center;
	color: var(--black);
}

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

.one {
	display: flex;
	flex-direction: row;
}

.two {
	display: flex;
	flex-direction: row;
}

.left {
	width: 50%;
	float: left;
	text-align: left;
	padding: 0rem 2rem;
}

.right {
	width: 50%;
	float: right;
	text-align: right;
	padding: 0rem 2rem;
}

.billede {
	display: flex;
	justify-content: center;
	margin: 10rem 0rem; 
}

.video {
	margin-top: 5rem;
}

.billede2 {
	width: 10rem;
}

/* Slideshow container */
.slideshow-container {
	margin: auto;
	width: 75%;
}

/* Hide the images by default */
.mySlides, .mySlides2, .mySlides3, .mySlides4, .mySlides5, .mySlides6, .mySlides7 {
	display: none;
	margin-top: 50%;
}

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

/* Next & previous buttons */
.prev, .next{
	cursor: pointer;
	position: absolute;
	top: 50%;
	color: var(--black);
	font-weight: bold;
	transition: 0.6s ease;
	user-select: none;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

	.prev {
	left: 0;
	border-radius: 3px 0 0 3px;
}

/* Number text (1/3 etc) */
.numbertext {
	color: var(--black);
	top: 0;
	text-align: center;
}

/* Fading animation */
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

.tothetop h4 {
	color: var(--black);
	text-decoration: none;
	margin-top: 5rem;
}

.tothetop h4:hover {
	font-family: upgrade-lights, sans-serif;
	font-weight: 500;
	font-style: normal;
}

.tothetop a {
	text-decoration: none;
}

#tilbage {
	float: left;
	margin-top: 7rem;
}

#tilbage h4 {
	color: var(--black);
	font-family: upgrade-lights, sans-serif;
	font-weight: 400;
	font-style: normal;
}

#tilbage h4:hover {
	font-family: upgrade-lights, sans-serif;
	font-weight: 700;
	font-style: normal;
}

#tilbage a {
	text-decoration: none;
}

/* FOOTER */
	footer {
		background-color: #708D77;
		/* white-space */
		padding: 2.5rem 10rem;
		margin-top: 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: 10rem 3rem; /* whitespace */
	}

	#dato {
		margin: 5rem 0rem;
		text-align: center;
		color: var(--black);
	}

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

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

	.two {
		display: flex;
		flex-direction: column-reverse;
	}

	.left {
		width: 100%;
		padding-top: 2rem;
	}

	.right {
		width: 100%;
		padding-top: 2rem;
	}

	.billede {
		display: flex;
		justify-content: center;
		margin: 10rem 0rem; 
	}

	.billede2 {
		width: 10rem;
	}

		/* Slideshow container */
	.slideshow-container {
		margin: auto;
		width: 75%;
	}

	/* Hide the images by default */
	.mySlides, .mySlides2, .mySlides3, .mySlides4, .mySlides5, .mySlides6, .mySlides7 {
		display: none;
	}

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

	/* Next & previous buttons */
	.prev, .next{
		cursor: pointer;
		position: absolute;
		top: 50%;
		color: var(--black);
		font-weight: bold;
		transition: 0.6s ease;
		user-select: none;
	}

	/* Position the "next button" to the right */
	.next {
		right: 0;
		border-radius: 3px 0 0 3px;
	}

		.prev {
		left: 0;
		border-radius: 3px 0 0 3px;
	}

	/* Number text (1/3 etc) */
	.numbertext {
		color: var(--black);
		top: 0;
		text-align: center;
	}

	/* Fading animation */
	.fade {
		animation-name: fade;
		animation-duration: 1.5s;
	}

	@keyframes fade {
		from {opacity: .4}
		to {opacity: 1}
	}

	.tothetop {
		background-color: var(--hover);
		margin-top: 5rem;
	}
	
	.tothetop h4 {
		color: var(--black);
		text-decoration: none;
	}

	.tothetop h4:hover {
		font-family: upgrade-lights, sans-serif;
		font-weight: 500;
		font-style: normal;
	}

	.tothetop a {
		text-decoration: none;
	}

	#tilbage {
		margin-top: 7rem;
		background-color: var(--hover);
	}

	#tilbage h4 {
		color: var(--black);
		font-family: upgrade-lights, sans-serif;
		font-weight: 400;
		font-style: normal;
	}

	#tilbage h4:hover {
		font-family: upgrade-lights, sans-serif;
		font-weight: 700;
		font-style: normal;
	}

	#tilbage a {
		text-decoration: none;
	}


/* 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;
	}
}
