body{
    margin: 0;
    text-align: center;
    font-family: 'Lato', sans-serif;
    color: #653A1E;
}

html {  
  scroll-behavior: smooth;  
}

/**** FONTS ****/
h1 {
    margin: 0;
    font-family: 'Shrikhand', cursive;
    font-size: 46px;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 2px 2px rgba(252, 64, 40, 0.3);
}

h2 {
    text-transform: uppercase;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 1px;
}

h3 {
    text-transform: lowercase;
}

a {
    text-decoration: none;
    color: #653A1E;
}

a:hover, a:visited{
    color: #653A1E;
}
/**** CONTAINERS ****/
header{
    height: 25vh;
    background-image: url('images/omeeting/cover_photo.png');
    background-size: contain;
    background-position: center;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.button-container {
    /* display: block; */
    /* flex-direction: column; */
  padding: 10px 24px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  width: 50%; /* Set a width if needed */
  display: block; /* Make the buttons appear below each other */
  }
  .button-container button:not(:last-child) {
    border-bottom: none; /* Prevent double borders */
  }

  /* Add a background color on hover */
.button-container button:hover {
  background-color: #3e8e41;
}
  .button-wrapper {
    margin: 10px 0;
  }

section{
    padding-top: 50px;
}

footer {
    margin-top: 25px;
    background-color: #FFDE59;
    padding: 1%;
}

/**** BUTTONS ****/
.button-85 {
    padding: 1.5em 10em;
    margin: 10px auto;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111 ;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    font-family: 'Roboto', sans-serif;

    font-size: 16px;
    font-weight: bold;
    color: #050505; /* Change color of text */
  }
  
  /* .button-85:before {
    content: "";
    background: linear-gradient(
      45deg,
      #ff0000,
      #ff7300,
      #fffb00,
      #48ff00,
      #00ffd5,
      #002bff,
      #7a00ff,
      #ff00c8,
      #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
  } */

  .button-85:before {
    content: "";
    background: linear-gradient(
      45deg,
      #B22222,
      #FFA07A,
      #FA8072,
      #E9967A,
      #F08080,
      #CD5C5C,
      #DC143C,
      #8B0000,
      #FF0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
  }
  
  @keyframes glowing-button-85 {
    0% {
      background-position: 0 0;
    }
    50% {
      background-position: 400% 0;
    }
    100% {
      background-position: 0 0;
    }
  }
  
  .button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 20px;
  }

  .sand-btn:after {
    background: #dd3203; /* Change the background color for the Sandwiches button */
  }

  .brg-btn:after {
    background: #d8a79f; /* Change the background color for the Sandwiches button */
  }

  .pizza-btn:after {
    background: #fcad1a; /* Change the background color for the Sandwiches button */
  }

  .ass-btn:after {
    background: #04b831; /* Change the background color for the Sandwiches button */
  }
  
  .dess-btn:after{
    background: #945640;
  }
  
  .chick-btn:after{
    background: #ca8f19;
  }


  .menu-button {
    display: inline-block;
    width: 80%;
    padding: 3%;
    margin: 15px auto;
    background-color: #FFDE59;
    border: 2px solid #FA873E;
    border-radius: 15px;
    font-size: 20px;
    font-family: Merienda;
    /* text-transform: uppercase; */
}
/* drop down*/
  
.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    text-align: center;
    width: 100%;
    background-color: #b2c2c0;
  }

  .dropdown-content a {
    display: inline-block;
    margin: 0 auto;
  }

  .dropdown-content button {
    display: inline-block ;
    /* background-color: rgba(0, 0, 0, 0.2); */
    width: 222px;
    /* overflow: auto; */
    /* position: absolute; */
    left: 0;
    top: 100%;
  }

  /* .dropdown-content:nth-child(1) {
    background-color: #c3cfcb;
  } */
  .dropdown-content:nth-child(2) {
    background-color: #c3cfcb;
  }

  .dropdown-content:nth-child(3) {
    background-color: #be06d6;
  }

  .dropdown-content:nth-child(4) {
    background-color: #ff1500;
  }
  
  .show {
    display: block;
  }
  

  /* Modal styles */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }