html,body{
    padding: 0;
    margin: 0;
}
nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #169ad7;
    padding: 10px 20px;
    flex-wrap: wrap;
    box-sizing: border-box;
}
#logo{
    /* position: relative;
    right:20% */
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    cursor: pointer;

}
.menu ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu li{
    /* position: relative;
    left:20% */
    font-size: 1.1rem;
    font-weight: 200;
    padding: 10px 20px;    
}
a{
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}
a:hover{
    color: cyan;
    
}
