@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
  padding: 0;
  background-color: white;
}


h1 {
  font-family: 'Sail', cursive;
  font-size: 100px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  color:white;
}

h2 {
  font-family: 'Sail', cursive;
  font-size: 60px;
  line-height: 15px;
  font-style: italic;
  font-weight: 400; 
  color: #510719;
  
}


.container{
      background-repeat: no-repeat;
      background-size: 100% auto;
      width: 100%;
      z-index: 0;
      height: 600px;

}



.biglogo {
  position: fixed;
  width: 100%;
  text-align: center;
  z-index: 99;
  top: 30%;
}



.highlight {
  color: white;
  font-size:70px;
  text-transform: uppercase;
  text-decoration: none;
  padding:8px 20px;
  transition:all 0.7s;
}

.highlight:hover{
    color:red;

}


/*--- Media Queries --*/
/*responsive-*/

@media (max-width: 1000px){
  .container {

  margin-top:5%;
  margin-right:10%;
  }
  h1{
   font-size:80px;

  }
  h2{
    font-size:20px;

  }

  .highlight{
    font-size:30px;
  }
}

@media (max-width: 500px){
  .container {
  max-width:400px;
  margin-top:45%;

  }
  h1{
    font-size:45px;

  }
  h2{
    font-size:35px;

  }
  .biglogo{
    top:30%;
  }
  .highlight{
    font-size:20px;
  }
}

