* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  }

  .boner{
    display: flex;
    background-color: orange;
    width: 100%;
    height: 300px;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    border-radius: 15px;    
}

footer{
    display: flex;
    width: 100%;
    justify-content: center;
}
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-right: 20px;
  }
  
  nav ul li:last-child {
    margin-right: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }
  
  h1 {
    font-size: 32px;
    color: #333;
  }
  
  main {
    padding: 40px;
  }
  
  .banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    background-image: url("img/fruit-1.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
  }

  form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 20px;
  }

  .dro{
    margin-top: 20px;
    background-color: orange;

  }

  .ttl{
   display: flex;
   flex-direction: column;
   width: 100%;
   justify-content: center;
   padding-top: 20px;
   padding-bottom: 20px;
  }
  
  textarea {
    resize: vertical;
  }
  
  button[type="submit"] {
    padding: 10px 20px;
    background-color: #ff4500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }
  
  button[type="submit"]:hover {
    background-color: #e23c00;
  }
  
  
  .banner h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .btn-order {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .btn-order:hover {
    background-color: #e23c00;
  }
  
  .products {
    margin-top: 40px;
  }
  
  .products h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .products ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }
  
  .products li {
    flex-basis: calc(33.33% - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .products li:last-child {
    margin-right: 0;
  }
  
  .products li img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .products li h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .products li p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
  }
  
  .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  .popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .popup h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .popup form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .popup form label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .popup form input[type="text"],
  .popup form input[type="email"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 20px;
  }
  
  .popup form button[type="submit"] {
    padding: 10px 20px;
    background-color: #ff4500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .popup form button[type="submit"]:hover {
    background-color: #e23c00;
  }

  .myClass {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    text-align: center;
  }
    

  @media screen and (max-width:700px){
    .products ul{
        display: flex;
        flex-direction: column;
    }
    h1{
        font-size: 24px;
        text-align: center;
    }
    .ttl{
        margin-right: 20px;
        margin-left: -1px;
        transform: scale(0.8);
    }
  }