#logo {
    color: white;
    font-size: 30px;
    text-align: left; 
    margin-left: 20px; 
    font-weight: 600;
}

nav {
    margin-right: 20px; 
    background-color: #00126d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: right; 
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    text-transform: uppercase;
}

nav ul li a:hover {
    text-decoration: underline;
}

footer {
    background-color: #100469;
    color: white;
    text-align: center;
    padding: 10px 0;
}

button:hover {
    cursor: pointer;
}

@media (max-width: 768px) {
    #logo {
        font-size: 25px;
    }

    .nav {
        color: red;
    }
}