@import url(design_system.css);

*{
    margin: 0%;
    font-family: 'Lato', sans-serif;
}

body{
    background-image: var(--background);
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    height: 80px;
    margin: 0 5%;
}

nav div{
    width: 40%;
}

nav div a{
    font-size: 24px;
    color: var(--link_color);
}

a{
    text-decoration: none;
    color: var(--link_color);
}

header ul a:hover{
    font-weight: 600;
    text-shadow: 0px 12px 1px rgba(53, 53, 53, 0.492);
}

nav ul{
    width: 60%;
    display: flex;
    justify-content: center;
    list-style-type: none;
}

nav ul li{
    margin-left: 100px;
}