body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: cornsilk;
  }
  
  header {
    background-color: cadetblue;
    color: #fff;
    padding: 20px;
  }
  
  h1 {
    margin: 0;
  }
  
  main {
    padding: 20
  }

  .products{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0 25%;
  }

  .product{
    margin-right: 20px;
    text-align: left;
  }

  #order-form{
    display: flex;
    flex-direction: column;
    margin: 0px 25%;
  }

  .fri{
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 888;
    align-items: center;
    justify-content: center;
  }

.rote{
  display: block;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}




  .open{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

footer{
    position: relative;
    top: 17px;
    text-align: center;

}

.gr{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.kor{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 50px;
    flex-direction: column;
}

.bt{
    background-color: cadetblue;
    border: none;
    border-radius: 50px;
    padding: 10px 10px;
    color: white;
    text-decoration: none;
}

.bt:hover{
    cursor: pointer;
    border: 2px solid black;
}

.nm{
    border: none;
    background-color: cadetblue;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;;
    color: white;
}

.onas{
    background-color: cadetblue;
    margin-top: 50px;
    padding: 10px 200px;
    border-radius: 50px;
}

@media (max-width:650px){
    .gr{
        display: grid;
        grid-template-columns: 1fr;
    }
    .kor{
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    .imh{
        width: 98%;
    }
    .products{
        display: grid;
        grid-template-columns: 1fr;
        margin: 0 25%;
      }
      .tro{
        margin: 0 auto;
        text-align: center;
        display: flex;
      }
      .product{
        margin-bottom: 40px;
      }
      .onas{
        background-color: cadetblue;
        margin-top: 50px;
        padding: 10px 20px;
        text-align: center;
        border-radius: 50px;
    }
}


@media (max-widthh:320px){
  .bt{
    background-color: cadetblue;
    border: none;
    border-radius: 50px;
    padding: 10px 4px;
    color: white;
    text-decoration: none;
}
}

@media (max-width:800px){
  .products{
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 25%;
  }
  .product {
    margin-right: 20px;
    text-align: left;
    margin-bottom: 20px;
  }
}