* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

#top-of-the-page {
    width: 100%;
    position: absolute;
    top: 0;
}

/* Nav Bar  */
nav {
    width: 100%;
    background: #34495e;
    position: fixed;
    top: 0;
    transition: 0.4s;
    display: flex;
    align-items: center;
    color: white;
}

.nav-content {
    width: 768px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.menu>a {
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    transition: 0.4s;
}

.menu>a:hover {
    background: #95a5a6;
    border-radius: 5px;
}

/* Main Page  */

main {
    width: 100%;
    margin: 100px auto;
}

section {
    width: 100%;
    height: 60vh;
}

.content {
    width: 768px;
    margin: 0 auto;
    padding-top: 50px;
    text-align: center;
    line-height: 40px;
    text-transform: capitalize;
}

#home {
    background: #16a085;
}

#about {
    background: #27ae60;
}

#services {
    background: #16a085;
}

#contact {
    background: #1abc9c;
}