html, body, main, section, video {
    height: 100vh;
    width: 100%;
    margin: 0;
}

main {
    overflow-y: scroll;
    scroll-snap-type: y mandatory;

    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
main::-webkit-scrollbar {
    display: none;
}

section, nav, nav a {
    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    scroll-snap-align: start;
    position: relative;
    z-index: 1;

    color: white;
}

img {
    max-width: 90vw;
}

.vertical {
    flex-direction: column;
    gap: 10vh
}

#background-reel {
    object-fit: cover;
    z-index: 0;
    position: absolute;
}

#pay-off {
    margin-top: -5vh;
    font: x-large monospace;
    letter-spacing: 2vw;
    color: #042f32;
}

/* This should just be an SVG */
#arrow {
    height: 5vw;
    width: 5vw;
    border-bottom: solid white 1px;
    border-left: solid white 1px;
    margin: 0 0 3px 3px;
    transform: rotate(-45deg);
    opacity: 40%;
}

#arrow:hover {
    border-width: 4px;
    margin: 0;
}

.shadowed {
    filter: drop-shadow(4000px 0px 0 white);
    transform: translateX(-4000px);
    width: 40vw;
}