body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    font-family: Arial, sans-serif;
}

.slider {
    display: flex;
    flex-direction: column;
    height: 400vh; /* Adjusted to accommodate all slides vertically */
    width: 100vw;
    transition: transform 0.5s ease-in-out;
}
.slide {
    width: 100vw;
    height: 100vh;
    display: flex; 
    justify-content: center; 
    align-items: center;
    font-size: 2em;
    color: white;
    transform: scale(0.8);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.slide > div {
    flex:1;
}

.navigation {
    position: fixed;
    left: 90%;
    top: 85%;
    display: flex;
    justify-content: flex-end;
    width: 200px;
    transform: translateX(-50%);
    z-index: 1000;
}

.nav-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
}

.nav-button:hover {
    background-color: white !important;
    color:#000;
}

.zoom-out {
    transform: scale(0.8);
    opacity: 0;
}

.zoom-in {
    transform: scale(1);
    opacity: 1;
}
