*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
/* navigation bar */
.back{
    background-color: rgb(0, 0, 0);
}
.menu{
    padding-left: 50px;
    font-size: 20px;
    font-family: 'Almendra SC', serif;
    color: rgb(255, 0, 0) !important;
}


.menu:hover{
   
    background-color: rgb(255, 253, 137);
}


*{
  margin: 0px;
  padding: 0px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  box-sizing: border-box;
}
/* navigation bar */
#nav{
  width: 100%;
  height: 20vh;
  background: white;
}
.navrap{
  width: 90%;
  margin: auto;
}
.logo{
  position: absolute;
}
.logo img{
  height: 20vh;
  padding-top: 5px;
  padding-bottom: 5px;
}
.menu{
  float: right;
  margin-top: 10px;
  padding-right:60px ;
}
.menurap{
  border-radius: 15px;
  padding: 45px;
} 
.menurap ul li{
  display: inline;
}
.menurap ul li a{
  color:  grey;
  text-decoration: none;
  font-size: 17px;
  /* padding-left: 15px;
  padding-right: 15px; */
  padding: 15px; 
}
.menurap ul li a:hover{
  color: chocolate;
  border-bottom: 1px solid brown;
  /* padding: 5px; */
}


/* banner */
.ban{
  width: 100%;
  height: 70vh;
  background-image: url(banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}
.banrap{
  width: 100%;
  height: 70vh;
  background-color: rgba(0, 0, 0, 0.3); 
}
.banrap1{
  float: right;
  margin-top: 200px;
  margin-right: 400px; 
  margin-left: 100px;
}
.name{
 text-align: center;
}
.name h1{
  color: aliceblue;
  font-size: 70px;
  text-align: center;
}
.name h2{
  color: aliceblue;
  font-size: 60px;
  text-align: center;
  font-family: cursive;
}



/* middle */
.midrap1{
  width: 100%;
  background-color: rgb(0, 0, 0);
}
.midrap1 h1{
  text-align: center;
  font-family: cursive;
  padding-top: 10px;
  font-size: 40px;
  color: rgb(255, 255, 255);
}
.midrap{
  width: 100%;
  background-color: #262222;
  margin: auto;
  display: grid;
  grid-template-columns: auto auto auto auto auto auto ;
  grid-column-gap: 10px;
  grid-row-gap: 30px;
  
  padding-bottom: 30px;
  padding-left: 40px; 
  padding-right: 30px;
}
.container {
  position: relative;
  width: 100%;
  height: 40vh;
}

.image {
  display: block;
  width: 100%;
  height: 40vh;
  
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  width: 100%;
  height: 40vh;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.container:hover .overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  width: 100%;
  height: 50vh;
}

.text {
  color: rgb(255, 5, 5);
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.text p{
  font-family: cursive;
}
















