* {
    box-sizing: border-box;
    padding: 0;
  }
  body, html {
    scroll-snap-type: y proximity;
    margin: 0;
  }

  header{
    scroll-snap-align: start;
  }

  .description {
    scroll-snap-align: start;
  }

  footer{
    scroll-snap-align: start;
  }

  .ends {
    min-height: 50vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;
  }
  main {
    display: flex;
    flex-direction: column;
  }
  
  .slides {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .slides .list {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .slides .slide {
    scroll-snap-align: start;
    display: flex;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  .slide .background {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-position: center;
    will-change: transform;
    background-size: cover;
  }
  
  .slide .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    display: flex;
    text-align: center;
    width: 95%;
    padding: 3rem;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 40rem;
    position: relative;
    align-items: center;
    color: white;
    font-size: 2rem;
    line-height: 1.25em;
    font-weight: 500;
}

.slide .content::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    bottom: 15%;
    background-color: rgba(04, 79, 57, 0.6);
    z-index: -1;
    border-radius: 0.5rem;
}