#logo img{
    width: 100%
    height: auto;
}
@media (min-width: 300px){
    #logo img {
        width: 75%;
        aspect-ratio: 10.3/1;
       /*height: 60%; */
        /*height: auto;*/
    }
}

@media (min-width: 1024px) {
    #logo img {
        width: 900px;
    }
}

#nav::after {
    background-color: #00adff;
}

.button {
    background-color: #00adff;
}

.icon.major {
    background-color: #00adff;
}

#nav .accent {
    margin: 0 0.5rem;
}
#nav .accent a {
    color: white;
    background-color: #00adff;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    /*transition: all 0.3s ease;*/
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    display: inline-block;
    font-weight: 600;
    text-decoration: none !important;
}

#nav .accent a:hover {
    color: white !important;
    /*background-color: #0096d6;*/
    background-color: #50c8fc;;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#nav .accent a:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}