    * {
      margin: 0 auto;
    }

    body {
      margin: 0 auto;
      color: #8c8c8c;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow: hidden;
      width: 100%;
      height: 100vh;
    }

    .section {
      text-align: center;
    }

    .section.header {
      background: url('vics-store-front.png');
      background-size: cover;
      min-height: 100vh;
    }

    .section.header .back-button {
      background-image: url('back-button.png');
      width: 40px;
      height: 40px;
      background-size: 40px;
      position: absolute;
      left: 30px;
      top: 30px;
      display: none;
      cursor: pointer;
    }

    .section.header .picked-shop {
      display: block;
      width: fit-content;
      /* position:absolute; */
      /* left:80px; */
      /* top:38px; */
      font-size: 18px;
      margin-top: 17px;
      margin-bottom: 0px;
      color: #ccc;
      text-transform: capitalize;
    }

    .section.header h2 {
      color: #ccc;
      padding-top: 10px;
    }

    .section.header .buttons {
      cursor: default;
      margin-top: 10px;
    }

    .shop {
      display: block;
    }

    a {
      text-decoration: none;
      color: #000;
    }

    .button {
      cursor: pointer;
      padding-top: 8px;
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 12px;
      border-radius: 3px;
      display: inline-block;
      font-size: 16pt;
      transition: filter 0.3s;
      background-color: rgb(170, 170, 170);
      margin-right: 20px;
      margin-bottom: 20px;
      width: 125px;
      white-space: nowrap;
      color: #000;
    }

    .button:hover {
      filter: brightness(90%);
    }

    .button:last-of-type {
      margin: 0 auto;
    }

    .section.header .buttons #whichshop-button {
      background-color: #A48E5E;
    }

    .section.header .buttons #menu-button {
      background-color: #A48E5E;
    }

    .section.header .buttons #ordernow-button {
      background-color: #3CAC8A;
    }

    .header-wrapper {
      display: inline-block;
      background-color: #ffffff40;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .header-wrapper-centered {
      display: inline-block;
      background-color: #00000090;
      padding: 20px 50px;
      border-radius: 10%;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .logo-small {
      width: 300px;
      height: 300px;
    }

    .opening-hours-btn {
      color: #cccc;
      text-decoration: underline;
      cursor: pointer;
    }

    .opening-hours {
      margin-top: unset;
      padding: unset;
      width: 100vw;
      height: 100vh;
      border-radius: unset;
      display: none;
    }

    .opening-hours-container {
      width: 30vw;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      padding: 10px 0px;
      font-size: .9rem;
      background-color: rgba(0, 0, 0, .82);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 10px;
    }

    .opening-hours-close-btn {
      position: absolute;
      right: 10px;
      top: 2px;
      font-size: 20pt;
      cursor: pointer;
    }

    .opening-hours-tbl {
      border-collapse: collapse;
      width: 100%;
    }

    td {
      padding: 4px 8px;
    }

    tr {
      text-transform: capitalize;
    }

    .tr-border-top {
      border-top: 1px solid #58585860;
    }

    .tr-border-bottom {
      border-bottom:1px solid #58585860;
    }

    .times-right {
      float: right;
      text-align: right;
    }

    @media only screen and (max-width: 685px) {
      .section.header {
        background-position-x: 60%;
        background-size: 850px 100vh;
        background-repeat: no-repeat;
      }

      .back-button {
        position: absolute;
        top: -7px !important;
        left: 10px !important;
      }

      .picked-shop {
        position: relative;
        top: -18px;
      }
    }

    .opening-hours-container h2 {
      color: #fff;
    }

    @media only screen and (max-width: 600px) {
      .section.header {
        background-position-x: 30%;
        background-size: 850px 100vh;
        background-repeat: no-repeat;
      }

      .header-wrapper {
        margin-top: unset;
        padding: unset;
        width: unset;
        border-radius: unset;
        height: 100vh;
      }

      .header-wrapper-centered {
        position: absolute;
        top: 15px;
        display: inline-block;
        background-color: unset;
        padding: unset;
        border-radius: unset;
        backdrop-filter: unset;
        -webkit-backdrop-filter: unset;
      }

      .opening-hours-container {
        width: 90vw;
      }

      hr {
        border: 1px solid #58585860;
      }

      .logo-small {
        width: 70%;
        height: auto;
      }

      .button {
        margin: unset;
        width: 150px;
        display: block;
        margin: 0 auto;
        margin-bottom: 10px;
      }

      .buttons {
        margin-bottom: 10px;
      }

      .header-wrapper a:first-of-type {
        padding-top: 10px;
      }

      .header-wrapper span,
      a {
        display: block;
        margin-bottom: 10px;
      }

      .header-wrapper a:last-of-type {
        margin-bottom: 0px;
      }

      span.separator {
        display: none;
      }
    }