 /* .iframe-container {
    position: relative; */
    /* Magic! Makes sure the container is high enough to show the entire iframe
     * Thanks to http://andmag.se/2011/11/responsive-embeds/ */
    /* padding-bottom: 56.5%;
}

 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

 img {
    display: block;
    max-width: 100%;
  }
  
  .video-grid {
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }

  .video-container {
    min-width: 200px;
    min-height: 350px;
  }

  .download-button:link, .download-button:visited {
    background-color: #6e33b2;
    color: white;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;

  &:hover {
    background-color: #8145c5;
  }

  &:active {
    background-color: #2f075c;
    }
}

  .image-carousel {
    overflow: hidden;
    height: 50vh;
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-gap: 10px;
  }

  .gallery {
    overflow: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .gallery__img {
    scroll-snap-align: start;
    margin-bottom: 10px;
    min-height: 50vh;
    object-fit:cover;
  }

  .lil-nav {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  
  .lil-nav a {
    height: 100px;
    display: flex;
    margin-bottom: 10px;
  }
  
  .lil-nav__img {
    object-fit: cover;
    transition: 0.3s ease all;
  
    &:hover {
      transform: scale(1.05);
    }
  }

  footer {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .icon-container {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .logo-grid{
    display: grid;
    grid-template-columns: 5fr 5fr 5fr;
    grid-gap: 10px;
  }

  .logo-preview{
    height: 100px;
    width: 100px;
  }
  