*{
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.pages {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
}

.pages img {
    width: 100%;
    height: 100vh;
    display: flex;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

.neon-text {
    color: #ffffff;
    text-shadow:
        0 0 7px #7dd4ff,
        0 0 21px #65c9ff,
        0 0 102px rgb(71, 163, 255),
        0 0 151px rgb(71, 163, 255);
}

.home-intro {
    margin-top: 25vh;
    margin-bottom: 75vh;
}

.home-intro h2 {
    font-size: 5vh;
    color: rgb(143, 212, 233);
    font-weight: bold;
    text-decoration: none;
}

.rocket img {
    width: auto;
    height: 6vh;
    position: absolute;
    top: 34vh;
    right: 49.7vw;
    z-index: 1; 
}

.rocket img:hover {
    filter: brightness(0.7) sepia(1) hue-rotate(180deg);
}