:root {
    --store-color: #1F0F53;
    --text-color: #DAA546;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    font-family: Tahoma, sans-serif;
    background-color: #fff;
    z-index: -1;
  }
  header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--store-color);
  }
  .store-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.4rem;
    color: #DAA546;
    font-family: 'Habibi', sans-serif;
    margin-left: 15px;
  }

  #logo {
    width: 50px;
    height: 50px;
  }
  
  .material-symbols-outlined {
    font-size: 38px !important;
    background-color: white;
    opacity: 1;
    border-radius: 5px;
    margin-right: 8vw;
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
  }
  
  .lower-menu {
    opacity: 1;
    position: absolute;
    top: 55px;
    width: 100vw;
    height: 50px;
    background-color: var(--store-color);
    transition: opacity .2s;
  }
  
  .lower-menu.hide {
    opacity: 0;
  }
  
  .lower-menu ul {
    display: flex;
    justify-content: space-evenly;
    padding-inline-start: 0px;
  }
  
  .lower-menu li {
    margin-top: 5px;
    list-style: none;
  }
  
  .lower-menu li a {
    color: white;
    text-decoration: none;
  }
  
  nav ul {
    margin-right: 1vw;
  }
  
  .material-symbols-outlined:hover {
    cursor: pointer;
  }
  
  nav li {
    display: inline-block;
    padding: 10px;
    list-style: none;
  }
  
  nav li a {
    text-decoration: none;
    color: white;
    box-shadow: inset 0 0 0 0 white;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
  }
  
  nav li a:hover {
    box-shadow: inset 200px 0 0 0 white;
    color: black;
  }
  
  .main {
    padding-top: 75px;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    text-align: center;
    margin: 50px 30px 2px;
    font-size: 2rem;
    color: var(--text-color);
    text-shadow: 1px 1px 1px #785C24,
    1px 2px 1px #785C24,
    1px 3px 1px #785C24,
    1px 4px 1px #785C24,
    1px 5px 1px #785C24,
    1px 6px 1px #785C24,
    1px 7px 1px #785C24,
1px 18px 6px rgba(16,16,16,0.4),
1px 22px 10px rgba(16,16,16,0.2),
1px 25px 35px rgba(16,16,16,0.2),
1px 30px 60px rgba(16,16,16,0.4);
}
  

  #countdown-timer {
    text-align: center;
    font-size: 50px;
    color: var(--text-color);
  }

  #countdown-timer > div {
    display: inline-block;
    padding: 10px;
    background: var(--store-color);
    border-radius: 15px;
  }

  #countdown-timer > div > span {
    display: inline-block;
    padding: 25px;
  }

  .subtext {
    font-size: 20px;
  }

  .location-header, .about-us-header {
    text-align: center;
  }

  #location-para {
    text-align: center;
  }
  
  .about-paragraph {
    margin: 15px;
    margin-left: 10%;
    margin-right: 10%;
    text-align: left;
  }

  .about {
    margin-bottom: 50px;
  }
  
  #map {
    margin: auto;
    height: 300px;
    width: 75vw;
    z-index: 1;
  }
  
  .contact {
    margin-top: 50px;
    text-align: center;
  }
  
  .contact-sheet-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 1.1rem;
  }

  .return {
    margin: 50px;
  }
  
  footer {
    padding-top: 45px;
  }
  
  @media (max-width: 1000px) {
  
    .store-name {
      font-size: 1rem;
    }
    
    .lower-menu {
      top: 52px;
    }

    #countdown-timer {
      font-size: 30px;
    }

    .subtext {
      font-size: 15px;
    }
    
    .contact-sheet-header {
      Display: flex;
      flex-direction: column;
    }

    .store-location, .phone-number, .email-info {
      max-width: 100%;
    }
  }