* {
    margin: 0;
    padding: 0;
}

nav {
    position: fixed;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
    background-color: black;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

nav ul li {
    list-style-type: none;
    /*padding: 5px;*/
    display: block;
    height: 100%;
    margin: 1rem 0.5rem;
}

nav ul li a {
    text-decoration: none;
    text-align: center;
    font-size: 1.2rem;
    color: white;
    height: 100%;
    /*box-sizing: border-box;*/
    padding: 1rem 0.5rem;

}

nav ul li :hover {
    background-color: gray;
    transition: background-color 10ms ease-in-out;
    height: 100%;
}

section {
    padding-top: 4rem;
    box-sizing: border-box;
    /*display: flex;*/
}

#welcome-section {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

#projects h2 {
    padding-bottom: 1em;
}

#project-grid {
    display: flex;
}

#contact {
    height: 100vh;
    /*display: flex;*/
}

@media (min-width: 100px) {

}