a{
  text-decoration: none;
  color: black;
  opacity: .8;
  transition: .2s;
  font-size: 16px;
  width: 100%;
}
a:hover{
  text-decoration: none;
  opacity: 1;
  color: black;
  transition: .2s;
  font-size: 19px;
}
.none{
  opacity: 0;
  transform: translate(0,40px);
  transition: 1s ease-in;
}
.none.show{
  opacity: 1;
  transform: translate(0,0);
}
.container{
  width: 90%;
}
header{
  display: none;
}
nav ul{
  height: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding:0;
  border-bottom: 1px solid black;
  position: fixed;
  top: 0;
  background-color: white;
  z-index: 10;
}
nav ul li{
  list-style: none;
  width: 100%;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
}
*{
  text-align: center;
  font-family: serif;
}
h1{
  margin-top: 110px;
  font-weight: bold;
  letter-spacing: 4px;
}
h2{
  padding-top: 120px;
  margin-top: 60px;
  margin-bottom: 50px;
  font-weight: 500;
  padding-bottom: 50px;
  letter-spacing: 5px;
}
h3{
  padding: 30px;
  letter-spacing: 5px;
}
p{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
}
.osusume{
  margin: 40px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid black;
}
.osusume img{
  width: 100%;
  border-radius: 10px;
}
.os-p{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding-top: 50px;
}
.os-p h4{
  letter-spacing: 6px;
  color: rgb(255, 38, 38);
  font-weight: bold;
  font-size: 30px;
}
.berger-wrapper{
  margin-top: 10px;
}
.berger-wrapper h2 ,.drink-wrapper h2{
  margin-bottom: 10px;
  margin-top: 0;
  padding-bottom: 20px;
}

.box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  padding: 15px 0;
}
footer{
  height: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  border-top: 1px solid black;
  margin-top: 100px;
}
small{
  padding: 20px;
}

@media screen and (max-width:500px){
  .col-6{
    padding: 0 6px;
  }
  header{
    display: block;
  }
  .respons-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    border-bottom: 1px solid black;
    z-index: 90;
    background-color: white;
  }
  .icon{
    text-align: center;
    height: 70px;
    padding-left: 20px;
  }
  .icon p{
    line-height: 70px;
    font-size: 25px;
  }
  .menu-btn i{
    font-size: 35px;
    padding: 0 15px;
  }
  .fa-times{
    display: none;
  }
  .fa-open{
    display: block;
  }
  .fa-close{
    display: none;
  }
  .res-ul{
    flex-direction: column;
    top: 70px;
    border: none;
    height: 91vh;
    background-color: rgba(0, 0, 0, 0.9);
    left: 100%;
    transition: .5s ease-in-out;
  }
  .open{
    left: 0;
    transition: .5s ease-in-out;
  }
  h1{
    margin-top: 100px;
    letter-spacing: 10px;
  }
  nav ul li{
    border-bottom: 1px solid rgba(245, 245, 245, 0.808);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  nav a{
    color: white;
    font-size: 18px;
    letter-spacing: 5px;
  }
  nav a:hover{
    color: white;
  }
  .box{
    margin: 8px 0;
  }

  h2{
    padding-top: 80px;
  }
  p{
    font-size: 12px;
    padding:0;
  }
  .os-p h4{
    font-size: 18px;
    letter-spacing: 5px;
  }
  .os-p p{
    font-size: 10px;
  }
  .berger-wrapper h3{
    padding: 30px 0;
  }
}

@media screen and (max-width:340px){
  nav ul{
    height: 88vh;
    margin: 0;
  }
  p{
    font-size: 10px;
  }
  .osusume {
    padding-bottom: 10px;
  }
  .os-p h4{
    font-size: 12px;
    letter-spacing: 3px;
  }
  .os-p p{
    font-size: 8px;
    letter-spacing: 1px;
  }

}