@font-face {
	font-family: Roboto;
	src: url(Roboto/Roboto-VariableFont_wdth,wght.ttf);
}


body{
	background-color: rgb(20, 20, 20);
	color : rgb(230, 230, 230);
	
	font-family: 'Roboto';
	padding-top: 1vh;
}

p{
	font-size: 1.35em;
}

#main{
	display:flex;
	width: 100%;
	height: 100vh;

	
}

nav, nav li a{
	
	width: 17vw;
	font-size: 2vw;
	color: white;
	text-decoration: none;


}
nav li{
	list-style-type:none;
	padding-top: 3vh;
	

}



#section-2{

	
	width: 60vw;
	height: 150vh;
	
	margin-left: 2vw;
	margin-right: 3vw;
	margin-top: 3vw;
	padding: 1% 1%;
	text-align: center;


}

#section-2 h1{
	font-weight: normal;
}

#ads{
		width: 13vw;
		height: 13vw;
		margin-top: 4vw;
}

#logo{

	width: 10vw;
	position: fixed;
	bottom: 2.5vh;
	left: 3vw;
	font-size: 2.5em;
	line-height: 1.45em;
	

	animation: fadeIn 3s;
}
#logo a{
	text-decoration: none;
	color: white;
}

.text-box{
	border: 1px solid white;
	padding: 4%;
	padding-bottom: 3%;
	margin-bottom: 5%;

}

@keyframes fadeIn {
	0%{
		opacity: 0;
		transform: scale(0.5, 0.5);

	}

	100%{
		opacity: 1;
		transform: scale(1, 1);
	}
}

@keyframes enterLeft {
	0% {left: 30vw;}
	100% {left: 0vw;}
}