html {
    scroll-behavior: smooth;
    font-family: 'Roboto Mono', monospace;
    text-align: center;
    color: #CBCBCB;
    background: rgb(25,25,25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 0;
}

h1 {
    font-size: 5vw;
    margin: .5vw;
}

h2 {
    font-size: 2vw;
}

h3 {
    font-size: 3vw;
    margin: .5vw;
}

h4 {
    display: none;
}

h5 {
    margin: .5vw;
    font-size: 1.5vw;
}

p {
    font-size: 1vw;
    text-align: center;
    margin-left: 10vw;
    margin-right: 10vw;
}

.landing {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vw;
}

ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.image-div {
    width: 100%;
    min-width: 0;
}

.the-images {
    max-height: 25vw;
    aspect-ratio: auto;
    cursor: pointer;
}

.down-sym {
    margin-top: 30vh;
    height: auto;
    max-width: 6vw;
}

/* Image viewer */
.image-viewer {
    display: none;
    flex-direction: column;
    position: fixed;
    z-index: 1;
    justify-content: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.8);
}

.full-image {
    margin: auto;
    display: block;

    width: auto;
    height: auto;
    max-height: 40vw;
}

a {
    text-decoration: none;
    color: #CBCBCB;
    position: relative;
    top: -3vh;
}


@media only screen and (max-width: 700px){
    h1 {
        font-size: 8vw
    }

    h2 {
        font-size: 6vw
    }

    h3 {
        font-size: 5vw;
    }

    h4 {
        display: block;
        text-align: center;
        font-size: 6vw
    }

    p {
        font-size: 4vw;
    }

    .landing {
        height: 100vh;
    }

    .down-sym {
        max-width: 20vw;
    }

    .image-viewer {
        display: none;
        position: fixed;
        z-index: 1;
        justify-content: center;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.8);
    }

    .full-image {
        margin: auto;
        display: block;

        width: auto;
        height: auto;
        max-height: 115vw;
    }

    a {
        top: -20vh;
    }
}
