body {
    margin: 0;
    font-family: "Comfortaa", sans-serif;
    color: #111;
}

img {
    display:block;
    margin:auto;
    padding: 20px;
    max-width: 70%;
    max-height: 70%;
}

.side-trigger {
    position: fixed;
    top: 0;
    right: 0;
    width: 40px;      
    height: 100vh;
    z-index: 50;
}


.side-panel {
    position: fixed;
    top: 0;
    right: -350px;  
    width: 350px;
    height: 100vh;
    background: white;
    border-left: 3px solid black;
    transition: right 0.4s ease;
    padding: 30px;
    overflow-y: auto;
    z-index: 100;
}


.side-trigger:hover + .side-panel,
.side-panel:hover {
    right: 0;
}


.slide h1 {
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}


.slide {
    height: 100vh;
    scroll-snap-align: start;
    padding: 20px;
    box-sizing: border-box;
}

.slides {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}


iframe {
    width: 100%;
    height: calc(100vh - 120px);
    border: none;
}


.container img {
    max-width: 70%;
    max-height: calc(100vh - 150px);
    display: block;
    margin: auto;
}
