*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
/* hobmer */
.hob{
    width: 100%;
    height: 6vh;
    background-color: purple;
}
.hobrap{
    width: 80%;
    margin: auto;
}
.head{
    position: absolute;
}
.head h2{
    font-size: 28px;
    color: white;
    padding-left: 5px;
}
.menu{
    float: right;
    margin: 6px;
}
.menu ul li{
    display: inline;
}
.menu ul li a{
    text-decoration: none;
    font-size: 18px;
    padding: 5px;
    color: white;
}
/* navigation bar */
.logo{
    position: absolute;
    padding: 5px;
}
.nav{
    width: 100%;
    height: 11vh;
    background-color: rgb(153, 5, 153);
}
.navrap{
    width: 80%;
    margin: auto;
}
.name h1{
    position: absolute;
    font-size: 50px;
    color: aliceblue;
    padding-top: 5px
}.name ul{
    text-align: right;
    padding-top: 25px;
}
.name ul li{
    display: inline;
}
.name ul li a{
    text-decoration: none;
    padding: 7px;
    text-transform: uppercase;
    font-size: 18px;
    color: aliceblue;
}
.name ul li a:hover{
    color: rgb(250, 59, 59);
    background-color: rgb(0, 0, 0, 0.2);
    border-radius: 7px;
}
/* banner */
.ban{
    width: 100%;
    height: 150vh;
    background-image: url(./ban2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.banrap{
    width: 100%;
    height: 150vh;
    background-color: rgba(0, 0, 0, 0.3);
}
.back{ 
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
} 
.banrap1{
    width: 70%;
    margin: auto;
    padding-top: 150px;
}
.banner{
    width: 80%;
    margin: auto;
    padding-top: 160px;
}
.banner h2{
    text-align: center;
    color: antiquewhite;
    font-size: 70px;
    transition: 0.3s;
    border: white;
    border-style: solid;
}
.banner h2:hover{
    -webkit-text-stroke: 1px white;
    color: transparent;
}
.banner p{
    text-align: center;
    text-transform: uppercase;
    font-size: 25px;
    color: antiquewhite;
    padding-bottom: 20px;
    padding-top: 20px;
}
/* contact */
/* contact */
.con{
    width: 100%;
    height: 80vh;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .conrap{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .contact1 table{
    height: 70vh;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
  }
  .contact1 table tr td h1{
    font-size: 50px;
  } 
  .contact1 table tr td{
    font-size: 30px;
    padding-top: 10px;
  }
  input[type=text]{
    padding-right: 50px;
    font-size: 20px;
  }
  input[type=email]{
    padding-right: 50px;
    font-size: 20px;
  }
  input[type=tel]{
    padding-right: 50px;
    font-size: 20px;
  }
  input[type=submit]{
    font-size: 20px;
    padding: 5px;
  }
  input[type=submit]:hover{
    background-color: goldenrod;
  }
  
  .contact h1{
    font-size: 50px;
    color: purple;
  }
  .contact ul li{
    padding-top: 25px;
    font-size: 25px;
  }
/* footer */
.foot{
    width: 100%;
    height: 45vh;
    background: purple;
}
.footrap{
    width: 75%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 40px;
}
.footer h3{
    font-size: 35px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.footer ul li{
    list-style: none;
}
.footer ul li a{
    text-decoration: none;
    font-size: 20px;
    color: wheat;
}
.footer p{
    font-size: 20px;
    color: wheat;
}