*{padding: 0; margin:0; box-sizing: border-box; font-family: sans-serif;}
header{

	font-family: sans-serif;
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
	            url('img/luanchadi.jpg');
	background-size: cover;
	position: relative;
}

.info{
		color: white;
		font-size: 20px;
		padding: 20px 70px;
		cursor: pointer;
}


.info span{
		margin:0 10px;
		}

 nav{
      width: 100%;
	  height: 70px;
	  padding: 0 70px;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	 }

.logo{
  color: white;
  font-size: 2em;
  font-family: normal;
  letter-spacing: 2px;
  }


.logo i{
        color: #e84393;
		}

.menu a{
		text-decoration:none;
		color: white;
        padding: 10px 20px;
		font-size: 20px;
		transition: 0.4s;
		}

.menu a:last-child{
		background:#F08080;
		border-radius: 8px;
		}


.menu a:hover{
		background:#F08080;
		border-radius: 8px;
	}


.box{
       background: white;
	   width: 450px;
	   height: 500px;
	   position: absolute;
	   top: 25%;
	   right: 5%;
	   padding: 30px;
  }


  form{
    width: 100%]
	}

  form input[type="text"]{
        width: 100%;
		padding: 20px 10px;
        margin: 10px 0;
        outline:none;
		border:none;
		background: rgba(0,0,0,0.1);
  }


  form input[type="submit"]{
        width: 100%;
		padding: 20px 10px;
        margin: 10px 0;
        outline:none;
		border:none;
		background: #F08080;
		color: white;
		cursor: pointer;
		transition: 0.4s;
 }


form input[type="submit"]:hover{
      background: transparent;
	  border:1px solid grey;
	  color: black;
}

.box span{
		color: #F08080;
		cursor: pointer;
}


.htext{
		position: absolute;
		top:30%;
		left: 5%;
		max-width: 600px;
		color: white;
}


.htext h1{
		font-size: 2em;
}


.htext h2{
		font-size: 4em;

}

.htext span{
		color: #F08080;
	}


.htext p{
	margin: 15px 0;
	line-height: 2em;
}


.htext a{
	text-decoration: none;
	color: white;
	padding: 10px 20px;
	border:1px solid white;
	letter-spacing: 2px;
	border-radius: 8px;
	transition: 0.4s;
}

.htext a:hover{
		background: #F08080;
}