@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,600;1,200;1,400;1,600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', Roboto, Arial, sans-serif;
}

#header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: calc(100vw - 10rem);
    gap: 3rem;
    padding: 2rem 5rem;
}

#header nav ul {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    font-size: 1.25rem;
}

#header nav ul li {
    list-style: none;
}

#header a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    gap: 2rem;
    color: black;
    text-decoration: none;
}

#header nav ul li a {
    text-decoration: none;
    color: black;
    border-bottom: 2px solid transparent;
    transition: all .2s;
}

#header nav ul li a:visited {
    color: black;
}

#header nav ul li a:hover {
    border-bottom: 2px solid #605F5E;
}

#current-nav {
    border-bottom: 2px solid #605F5E !important;
}

header {
    height: 7rem;
}

main {
    margin: 1rem auto;
    width: 65vw;
    text-align: center;
    min-height: calc(100vh - 16rem);
}

footer {
    margin: 0 auto;
    text-align: center;
    height: 3rem;
}
