@media only screen and (max-width: 800px) {

    .gallery-img-small {
        width: 93%;
        height: auto;
        margin: 7px;
    
  }
  
    .fooder {
      width: 100%;
      height: 550px;
      border-top-right-radius: 100px;
      border-top-left-radius: 100px;
      text-align: center;
    }
  
    .fooder-link {
      margin: 20px;
      font-size: 13px;
      color: white;
      width: 8%;
      height: auto;
    }
  
    .toggle_button{
      display: flex;
  }
  nav ul{
      height: min-content;
      width: 100%;
      background-color: var(--background-color);
  
      display: none;
      position: absolute;
      top: var(--navbar-height);
  }
  nav li{
      height: min-content;
      width: 100%;
  }
  nav ul a{
      padding: 30px 0;
  }
  .expandable_li{
      display: block;
  }
  .expandable_li label{
      padding: 30px 0;
      cursor: pointer;
      display: block;
  }
  .expandable_li:hover .dropdown{
      display: none;
  }
  .expandable_li input[type="checkbox"]:checked ~ .dropdown{
      display: block;
  }
  .dropdown{
      position: static;
      width: 100%;
  }
  .dropdown li{
      padding: 0;
      display: block;
      position: static;
      background: var(--darker-background-color);
  
  }
  .dropdown li a{
      width: 100%;
      padding: 0;
      justify-content: center;
  }
  #toggle_button:checked ~ ul{
      display: block;
  }

  .get-started {
    top: 150px;
  }
}
  
  @media only screen and (min-width: 1700px) {
    .fooder-link {
      font-size: 30px;
      width: 3;
      height: auto;
    }
  
    .week {
      width: 25%;
      height: 30vw;
    }
  
    h1 {
      font-size: 3vw;
    }
  
    .contact-button, .insta-button, .facebook-button, .youtube-button {
      width: 30%;
    }
  
    .team {
      width: 30%;
    }
    .contact-button:hover, .insta-button:hover, .facebook-button:hover, .youtube-button:hover {
      width: 35%;
    }
    .team:hover {
      width: 35%;
    }
  
    .text-animation {
      font-size: 1.67vw;
    }
  
    .up {
      width: 7%;
    }
  }