*{
  margin:0;
  padding:0;
  font-family: 'Poppins', serif;
}
#banner{
  background: linear-gradient(rgba(0,0,0,0.5), #4f23b0), url("Background.png");
  background-size: cover;
  background-position: center;
  height:100vh;
}

.rotated{
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}


.banner-text{
  text-align: center;
  color:white;
  padding-top: 30vh;
  text-decoration: none;

}

.banner-text a{
  text-decoration: none;
  color: #2e3fd9;
  display: inline-block;
  border: .5px solid #fff;
}

.header-text{
  text-align: center;
  color:white;
  padding-top: 3vh;
}
.header-text h1{
  font-size: 60px;
  font-family: 'Ubuntu', cursive;
}


.banner-text h1{
  font-size: 80px;
  font-family: 'Ubuntu', cursive;
}

.banner-text p{
font-size: 20px;
font-style: italic;
}
.banner-btn{
  margin: 70px auto 0;
}

.banner-btn a{
  width: 150px;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  padding: 12px 0;
  color: #fff;
  border: .5px solid #fff;
  position: relative;
  z-index: 1;
  transition: color 0.5s;
}


.banner-btn a span{
width: 0%;
height: 100%;
position: absolute;
top:0;
left:0;
background: #fff;
z-index: -1;
transition: 0.5s;
}
.banner-btn a:hover span{
  width: 100%;
}
.banner-btn a:hover{
  color: black;
}
