@import url(definitions.css);

.nav{
    height: 15%;
    background-color: var(--Yellow);
    font-family: var(--DisplayFont);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    box-sizing: border-box;
    border-color: black;
    border-radius: 15px;
    border-width: 5px;
    border-style: solid;
    box-shadow: 0 0 5px var(--HoverBlack);
    

    
}

.links{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;

}

.links li {
    display: inline-block;
}

.links a {
    color: var(--Black);
    text-decoration: none;
    font-weight: normal;
}

.links a:hover,
.links a:focus {
    color: var(--HoverBlack);
    text-decoration: none;
    text-shadow: 0 0 5px var(--HoverBlack);
}

.logo img {
    height: 80px;
    width: auto;
}
