    @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');
    .dm-serif-text-regular {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    }

    .dm-serif-text-regular-italic {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: italic;
    }
    @font-face {
    font-family: 'IntroRust';
    src: url(intro-rust/IntroRust-Base.otf);
    }

    @font-face {
    font-family: 'Garet';
    src: url(garet/Garet-Book.otf);
    }
    @font-face {
        font-family: 'GaretBold';
        src: url(garet/Garet-Heavy.otf);
        font-weight: 'bold';
    }
*, *::before, *::after {
    box-sizing: border-box;
}

    body{
        width: 100%;
        background-color: rgb(226,226,226);
        overflow-x: hidden;
    }
    h1{
        font-family:'IntroRust';
        text-align: left;
        font-size: 70px;
        margin: 0px;
     

    }
    a{
        font-family:'Garet';
        text-align: center;
        color: black;
        padding: 20px;
        font-size: large;
    }
    nav{
        display: flex;
        /* justify-content: space-around; */
        margin: auto;
        /* justify-items: center; */
        justify-content: center;
        /* background-color: yellowgreen; */
    }
    .container{
        overflow-x: hidden;

        /* background-color: yellow; */
        /* padding-top: 2vh; */
        width: 100%;
        height: 100vh;
        justify-content: center;
        margin: auto;
        max-width: 100%;
        text-align: center;
        
    }
    h2{
        font-family: 'Garet';
        text-align: center;
        margin: 0px;
        max-height: fit-content;

    }
    h3{
        text-align: center;
        font-family: "GaretBold";
        letter-spacing: 1px;
        font-size: 30px;
    }
    p{
        font-family: 'Garet';
        text-align: center;
        font-size: larger;
        font-weight: bold;

    }
    .info-div{
    font-family: 'Garet';
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 100px;
    padding-bottom: 100px;
    


    }
    .logo{
        padding: 0;
        margin-left: 20px;
    }
    iframe{
        margin: auto;
    }

    .menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    margin: 20px;
    padding: 0 10px;
    box-sizing: border-box;
    max-width: 100%;  
    justify-content: center;
    margin: 40px auto;

    
    }

    .menu-card {
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; 
    /* text-align: justify;
    text-justify: distribute; */
    }
    .address{
        color: rgb(92, 135, 220);
        
    }
    header{
        position: sticky;
        width: 100%;
        height: auto;
        z-index: 1001;
        display: flex;

        flex-direction: row;
        justify-content: space-between;
        /* align-items: center; */
    }
    .labels-wrap{
       display: flex;
    flex-direction: column;
    align-items: flex-start;
    }
    .btn{
        width: 100px;
        height: 100px;
        margin-left: auto;
        margin-right: 50px;
        top: 0;
        display: flex;
        /* position: relative; */

    }
    #hamburgerMenu {
        position: absolute;
        /* top: 10vh; */
        width: 100%;
        right: 0;
        text-align: left;
        background: rgb(226,226,226, 0.7);
        border-radius: 5%;
        z-index: 1000;
        opacity: 70%;
        display: inline-block;        
    }
     .ig-icon{
        width: 5%;
    }

    .image-crop-wrapper{
       width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        position: relative;
    }
    .image-crop-wrapper img {
        position: absolute;
        top: -60%; 
        left: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .slideshow-container {

        justify-content: center;
        justify-items: center;
        width: 40%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        position: relative;
        margin: auto;
        margin-top: 5vh;
        /* margin-bottom: 10vh; */

    }
    .slideshow-container img {

        position: absolute;
        top: -35%; 
        left: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
  
    .headerlbl{
      text-align: left;
      margin-left: 20px;
    }
    .home_labels{
        color: rgb(79, 178, 79);
        margin-top: 10vh;
        margin-bottom: 5vh;


    }


    @media screen and (max-width: 600px) {
    body{
        width: 95vw;
        
        overflow-x: hidden;
    }
  h1 {
    font-size: 40px;
    text-align: center;
  }

  h2 {
    font-size: 24px;
    margin-top: 10px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
    padding: 0 10px;
  }

  .container {
    width: 95vw;
    height: auto;
    padding: 10px;
    max-width: 95vw;
  }

  .btn {
    width: 60px;
    height: 60px;
    margin-right: 20px;
        margin-left: auto;


  }
  .labels-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .headerlbl {
    margin-left: 14px;
    font-size: 14px;
    text-align: left;


  }

  header {
    width: 95vw;
    z-index: 1001;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    position: sticky;
  }



  .menu-items {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 5px;
    margin: 20px 0;
    max-width: 100%;
  }



  .slide {
    width: 90vw;
    height: auto;
  }

  .slideshow-container {
    width: 90%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  #hamburgerMenu {
    width: 95vw;
    top: 15vh;
    font-size: 18px;
    z-index: 1000;
  }

  nav a {
    font-size: 18px;
  }
}
