@import url('https://fonts.googleapis.com/css?family=Arimo&display=swap');

* {
  box-sizing: border-box;
}

body {
    background: rgba(0, 0, 0, 0.9);
    margin: 0;
    color: #fff;
    font-family: 'Arimo', sans-serif;
    /* overflow-x: hidden; */
  }
  
  .showcase::after {
    content: '';
    height: 100vh;
    width: 100%;
    background-image: url(img/showcase.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    filter: blur(0px);
    -webkit-filter: blur(0px);
    transition: all 1000ms;
  }
  
  .showcase:hover::after {
    filter: blur(10px);
    -webkit-filter: blur(10px);
  }
  
  .showcase:hover .content {
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
  
  .content {
    filter: blur(0px);
    -webkit-filter: blur(0px);
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    text-align: center;
    transition: all 1000ms;
    transform: translate(-50%, -50%);
  }
  
  .content .logo {
    width: 600px;
  }
  
  .content .title {
    font-size: 2.2rem;
    margin-top: 1rem;
  }
  
  .content .text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-top: 1rem;
  }
  
  .container {
    max-width: 960px;
    margin: auto;
    overflow: hidden;
    padding: 4rem 1rem;
  }
  
  .grid-3 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-2 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .center {
    text-align: center;
    margin: auto;
  }
  
  .bg-light {
    background: #f4f4f4;
    color: #333;
  }
  
  .bg-dark {
    background: #333;
    color: #f4f4f4;
  }
  
  footer {
    padding: 2.2rem;
    border-top: solid #f41f8c 6px;

  }
  
  footer p {
    margin: 0;
  }

  .foodList {
      position: absolute;
      z-index: 10;
      top: 0px;
      left: -100vw;
      width: 100%;
      background-color: #333;
      transition: .5s;
  }

  .galleryList {
    position: absolute;
    z-index: 10;
    top: 0px;
    left: -100vw;
    width: 100%;
    background-color: #333;
    transition: .5s;
}

a {
color: white;
text-decoration: none;
}


  .menuButton {
      border: solid white 1px;
      height: 80px;
      width: 80%;
      border-radius: 10px;
      line-height: 80px;
      background-color: #f41f8c;
      cursor: pointer;
      transition: .3s;
  }


  .menuButton:hover {
    border: solid #f41f8c 1px;
    color: #f41f8c;
    background-color: #ffffff;
}

  .closeButton {
    display: none;
    position: fixed;
    cursor: pointer;
    color: white;
    background-color: transparent;
    border: none;
    top: 40px;
    right: 40px;
  }

  .closeButtonGallery {
    display: none;
    position: fixed;
    cursor: pointer;
    color: white;
    background-color: transparent;
    border: none;
    top: 40px;
    right: 40px;
  }

  .gallery {
    border-top: solid #f41f8c 6px;
    background-image: url("img/img (22).jpg");
    height: 50vh;
    background-size: cover;
    background-attachment: fixed;
  }

  .galleryButton {
    position: relative;
    display: block;
    z-index: 10;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    height: 100%;
    width: 100%;
    background-color: #f41f8d00;
    cursor: pointer;
    transition: .3s;
    color: #f4f4f4;
    font-size: 1.2rem;
    text-decoration: none;
    border: none;
  }

  .gallery:hover .galleryButton {
    color: #000000;
  }


  /* contact arrow */
  .fa-location-arrow {
    color: #f41f8c;
  }

  
  /* Small Screens */
  @media (max-width: 560px) {
    .showcase::after {
      height: 50vh;
    }
  
    .content {
      top: 25%;
    }
  
    .content .logo {
      width: 270px;
      transform: none;
    }
  
    .content .text {
      display: none;
    }
  
    .grid-3,
    .grid-2 {
      grid-template-columns: 1fr;
    }
  
    .services div {
      border-bottom: #333 dashed 1px;
      padding: 1.2rem 1rem;
    }

    .contact {
      text-align: center;
    }

    .closeButton {
      top: 5px;
      right: 5px;
    }

    .closeButtonGallery {
      top: 5px;
      right: 5px;
    }
}
  /* Landscape */
  @media (max-height: 500px) {
    .content .title,
    .content .text {
      display: none;
    }
  
  }


  
  /* gallery */
  .row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }