html, body {
	overflow: hidden;
  }

body {
	overflow-anchor: none;
	position: relative;
}

#content {
	object-fit: cover; 
}

.background {
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 102, 0, 0.80);
	background-position: center;
 	background-repeat: no-repeat;
 	background-size: cover;
  	object-fit: cover;  
	background-attachment: fixed;
	position: absolute;
	display: inline-block;
	float: right;
	z-index: -1;
}

div#no1 {
	background-image: url("../billeder/forside1.jpg");
}

div#no2 {
	background-image: url("../billeder/forside2.jpg");
}

div#no3 {
	background-image: url("../billeder/forside1.jpg");
}

div#no4 {
	background-image: url("../billeder/forside2.jpg");
}

.in {
	visibility: visible;
	transition: left 2s ease;
	left: 0;
}

.outfirst {
	transition: left 2s ease;
	left: 100vw;
}

.out {
	visibility: hidden;
	left: -100vw;
}

#frontpageContent {
	position: fixed;
	display: grid;
	display: -moz-grid;
	display: -ms-grid;
	width: 96vw;
	top: 55vh;
	font-size: 5.3vw;
	font-family: Arial;
	color: white;
	line-height: 2.5vw;
	gap: 2vw 2vw;
	grid-template-columns: 25vw 10.25vw;
	grid-template-areas: 
        'pageText1 pageText1'
		'pageEmpty1 pageText2';
	grid-auto-rows: -webkit-max-content;
	grid-auto-rows: max-content;
	-webkit-box-align: center;
			align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
	font-family: Arial;
	padding-top: 64px;
	padding-bottom: 100px;
	margin-left: 2vw;
	margin-right: 2vw;
}

@media all and (orientation: portrait) {
	#frontpageContent {
		line-height: 4vw;
		font-size: 7vw;
		grid-template-columns: 33.65vw 13.4vw;
	}
}