* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    width: 100%;
    height: 100%;
    /* CSS Smooth Scroll */
    /* overflow-y: hidden; height: 100vh; */
}

nav {
    position: fixed;
    top: 0;
    z-index: 2;
    background: rgb(0, 0, 0, 0.5);
    width: 100%;
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

nav ul a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 16px;
}

.container {
    height: 100%;
    /* CSS Smooth Scroll */
    /* overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory; */
}

section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    scroll-snap-align: center;
    padding: 20px;
}

section h1 {
    font-size: 3.5rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 10px;
}

section p {
    font-size: 1.5rem;
}

/* Section Images */
section#home {
    background: url('img/home.jpg') no-repeat center center/cover;
    ;
}

section#about {
    background: url('img/about.jpg') no-repeat center center/cover;
    ;
}

section#projects {
    background: url('img/projects.jpg') no-repeat center center/cover;
    ;
}

section#contact {
    background: url('img/contact.jpg') no-repeat center center/cover;
    ;
}

@media (max-width: 600px) {
    nav ul a {
        font-size: 14px;
    }

    section h1 {
        font-size: 3rem;
    }

    section p {
        font-size: 1.2rem;
        line-height: 1.3;
        text-align: center;
    }
}