
html, body {
    margin: 0;
    padding: 0;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100dvh;



}




.down-arrow {
    display: block;
    /*position: absolute;*/
    /*bottom: 0;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    font-size: 3em;
    color: lightgray;
    cursor: pointer;
    /*padding-bottom: 24px;*/
    padding-top: 24px;

    width: 2vmax;
}

.page {
    position: relative;
    height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-type: y mandatory;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 12vw;
    padding-right: 12vw;





    .down-arrow {
        bottom: 5vh;
    }

    .vizScreenshot {
        max-height: 25vh;
        display: none;
    }
}

.sampleViz {
    gap: 5vh;
}

#heroWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vh;

    /*position: relative;*/
    /*top: -5vh;*/
}

.hero {

    img {
        width: 10vmax;
    }
}

.hero-text {
    text-align: center;
    font-size: 1.5em;

    .tagline {
        font-size: .8em;
    }
}


.heading {
    font-size: 1.5em;
    font-weight: bold;
}

#home {

    gap: 1vh;

    #miniViz {
        /*background: red;*/
        /*width: 80vw;*/
        max-height: 50vh;
    }


}

#about {
    gap: 2vh;

    figcaption{
        text-align: center;
        font-size: .8em;
        position: relative;
        z-index: 100;
    }

    #canoeImage {
        max-height: 40vh;
        max-width: 90vw;
    }
}

#contact {
    gap: 2vh;

    .down-arrow{
        padding-top: 20vh;
    }
}

#linkedIn {
    width: 32px
}


/*larger screens*/
@media screen and (min-width: 1200px) {
    body {

    }

    .hero-text {
        font-size: 1.5em;

    }

    .page {
        font-size: 1.2em;

        .down-arrow {
            bottom: 2vh;
        }

        .vizScreenshot {
            max-height: 25vh;
            display: block;
        }

    }

    #home {

    }

    #heroWrapper {
        /*flex-direction: row;*/
        /*align-items: flex-end;*/
    }

    .hero {
        /*order: 2;*/
    }

    .hero-text {
        /*order: 1;*/
        /*text-align: right;*/
    }


}