html {scroll-behavior: smooth;}


body {
    font-family: "Work Sans", sans-serif;
    margin: 0;
    color: white;
    background-color: #1E1E3D;
    background-image: url('../assets/background.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
}




header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80vw;
    margin: 3.8vw auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3.8vw;
    padding: 0;
    font-weight: 400;
}

nav ul li a {
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 1.0vw;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}




main {
    width: 80%;
    margin: auto;
    padding-top: 35rem;
}

section {margin: 10rem 0;}
p {margin-top: 0}
footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 5rem;
    width: 80%;
    margin: auto;
    font-size: 16px;
}

#copyright {color: #A2B1FF;}