@charset "utf-8";
/* CSS Document */
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

body{
	width:100vw;
	height:100vh;
	font-family:Oswald, sans serif;
}

.hero{
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	background:url("hero_mobil.jpg");
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	position:relative;
}

.text{
	width:80%;
	padding:20px 5%;
	background: #000;
	background: rgba(0, 0, 0, 0.7);
	position:absolute;
	bottom:100px;
	left:10%;
	border-radius:50px;
	color:#fff;
	font-weight:300;
	text-align:center;
}

a{
	color:aqua;
	font-weight: 300;	
}

footer{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	display:flex;
	flex-direction: column;
	justify-content:center;
	align-items:center;
	background:#333;
	color:#fff;
	line-height:30px;
}

footer ul{
	margin:0 auto 10px auto;
	width:100%;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
}

footer a{
	margin: 0 20px;
}

@media only screen and (min-width:800px) and (max-width:950px){
	
	.hero{
		background:url("hero_labtop.jpg");
		background-positon:right;
	}
	
	.text{
	width:30%;
	padding:0;
	background: #fff;
	position:absolute;
	top:100px;
	left:60%;
	border-radius:none;
	color:#333;
	font-weight:300;
	text-align:left;
	font-size:21px;
}

	
}


@media only screen and (min-width:951px) and (max-width:1300px){
	
	.hero{
		background:url("hero_desk.jpg");
		background-positon:right;
	}
	
	.text{
	width:30%;
	padding:0;
	background: #fff;
	position:absolute;
	top:200px;
	left:60%;
	border-radius:none;
	color:#333;
	font-weight:300;
	text-align:left;
	font-size:21px;
}
	
}


@media only screen and (min-width:1301px) {
	
	.hero{
		background:url("hero_desk.jpg");
		background-positon:right;
		background-repeat:no-repeat;
	}
	
	.text{
	width:30%;
	padding:0;
	background: #fff;
	position:absolute;
	top:200px;
	left:60%;
	border-radius:none;
	color:#333;
	font-weight:300;
	text-align:left;
	font-size:28px;
}
	
}

