body {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  color: #111;
}
h1{
    position: absolute;
    top:10px;

}
.slides {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}


.slide {
  height: 100vh;
  scroll-snap-align: start;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;  
}

.slide h1 {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

img {
 padding: 20px;
 max-width: 70%;
 max-height: 70%;
}


.container{
 display: flex;
 justify-content: center;
}

iframe {
  position:absolute;
  border: none;
  width: 100%;
  margin: auto;
}

.side-text {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  overflow: hidden;
  background: #f7f7f7;
  border-left: 2px solid #ddd;
  padding: 60px 30px;
  box-sizing: border-box;
  transition: width 0.4s ease;
}


.side-text p {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide:hover .side-text {
  width: 40%;    
}

.slide:hover .side-text p {
  opacity: 1;
}


.slide {
  position: relative;
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

