@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

@media (orientation: landscape) {

	*{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: 'Montserrat', sans-serif;
	}

	html{
		height: 100%;
		width: 100%;
		position: relative;
		overflow: hidden;
	}

	body{
		/*background-color: #990000;*/
		height: 100%;
		width: 100%;
		/*background-image: url("images/übersicht-bg.png");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;*/
	}

	#content{
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background-image: url("images/Hintergrund_Noten.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.overlay-1{
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0.2;
		background-color: black;
		transition: opacity .5s;
	}

	.overlay-2{
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0.4;
		background-color: black;
	}

	#logo{
		width: 15%;
		height: 10%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 101;
		background-color: transparent;
		
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#logo img{
		height: auto;
		width: 60%;
		-webkit-filter: drop-shadow(0 0 15px rgba(0,0,0,0.7));	
	}

	#cont{
		height: 85%;
		width: 100%;
		background-color: transparent;
		position: absolute;
		left: 0;
		top: 10%;
		opacity: 0;
		
		overflow-y: auto;
		
		/* Fade In */
		animation-name: fadeIn;
		animation-duration: 1s;
		animation-fill-mode: forwards;
	}

	#headline{
		color: white;
		margin: 3% 0 0 0;
		font-size: 4vh;
		text-align: center;
	}

	#boxes{
		/*position: absolute;
		top: 20%;
		left: 10%;*/
		position: relative;
		margin: 1% 0 0 10%;
		width: 80%;
		height: auto;
		background-color: rgba(255,255,255,.8);
		
		padding: 1%;
	}

	#boxes h2{
		color: #990000;
		margin: 1% 0 .5% 0;
	}

	#boxes ul{
		padding: 0 0 0 2%;
		font-size: 1.6vh;
	}

	#boxes a{
		color: #990000;
	}

	#boxes p{
		font-size: 1.6vh;
	}
	
	.line{
		height: 2px;
		width: 100%;
		background-color: #990000;
		margin: 1.5% auto 0 auto;
	}
	
	#links{
		width: 100%;
		height: auto;
		background-color: transparent;
		font-weight: bold;
		font-size: 1vw;
	}

	/* Fade In */
	@keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}

}