@charset "UTF-8";

html, body {
  height: 100%;
}
body {
    font-family: Futura, sans-serif;
    font-size: 20px;
    color: #a91c03;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #6ea1c7;
  }
  
  .slideshow-container {
    margin: top 700x;
    width: 700px;
    max-width: 700px; 
    height: min(800, 100%);
    display: none; 
  }
  
  .slide {
    margin-top: 150px;
    width: 100%;
    height: 100%;

    /* position: absolute; */
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .trigger-container {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .trigger {
    cursor: pointer;
    width: 300pt;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .trigger:hover {
    transform: scale(1.1);
  }
  
  #next-slide {
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  