html, body {
    height: 100%;
    margin: 0;
  }
  
  .gallery {
    width: 100%;
    /* height: 100%; */
  }
  
  .slide {
    width: 100%;
    height: 100vh;
    background: white no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    cursor: pointer;
    color: white;
    position: relative;
  }
  
  .slide__label {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 32px;
    font-family: "Helvetica", "Arial", sans-serif;
    font-weight: 900;
    font-size: 64px;
    backdrop-filter: blur(5px);
  }
  .rounded-20 {
    border-radius: 20px !important;
  }
  .rounded-35 {
    border-radius: 35px !important;
  }
  .rounded-15 {
      border-radius: 15px !important;
  }
  .bg-cover-fixed {
    
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
  }