html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Noto Sans';
    max-width: 1800px;
    margin: 0 auto;
}

nav{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nav-links{
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link{
    margin: 0 1rem;
    font-size: 1.2rem;
    opacity: 0.7;
}


.active-link{
    font-weight: bold;
    text-decoration: underline;
    color: black;
    opacity: 1;
}

.nav-link > a{
    text-decoration: none;
    color: black;
}

#contact-button{
    font-size: 1rem;
    background-color: #e2c36c;
    color: white;
    border: none;
    margin: 0 1rem;
    padding: 1rem;
    width: 100px;
    cursor: pointer;
    text-align: center;
    opacity: 1;
}