html {
    scroll-behavior: smooth;
    font-family: 'Roboto Mono', monospace;
    color: #4AF626;
    background: rgb(25,25,25);
    background: linear-gradient(180deg, rgba(25,25,25,1) 0%, rgba(52,52,52,1) 50%, rgba(25,25,25,1) 100%); 
    align-content: center;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

section {
    padding-left: 10vw;
    padding-right: 10vw;
    margin-top: 45vh;
    margin-bottom: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    width: 65vw;
}


.landing {
    margin-top: 10vh;
}

.work {
}

nav ul {
    list-style-type: none;
    position: fixed;
    left: 0%;
    top: 5%;
}

nav li {
    display: inline-block;
    font-size: 1rem;
}


nav a {
    font-size: 1.8vw;
}

a {
    color: #4AF626;
    align-self: center;
}

p {
    text-align: center;
}

@media only screen and (max-device-width: 600px) {
    html {
        font-size: 1.3rem;
    }

    section {
        margin-top: 45vh;
        margin-bottom: 40vh;
    }

    img {
        width: 100vw;
    }

    .landing {
        margin-top: 20vh;
    }

    nav ul {
        left: 5%;
    }

    nav a {
        font-size: 1rem;
    }
}
