nav {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--nav-color);
}

.nav-div-img {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #385a81;
    transition: all 0.8s;
}

.nav-div-img h1:hover {
    border-radius: 12px;
    color: #3c74b3;
    background-color: rgb(23, 23, 55);
    padding: 4px;
    overflow: hidden;
}

.nav-div-img h1 {
    transition: all 0.8s;
}

.hover:hover {
    color: #3c74b3;
    cursor: pointer;
}

.nav-div-links {
    margin-right: 10px;
}

.nav-div-links a {
    overflow: hidden;
    font-size: 20.1px;
    transition: all 0.5s;
    text-decoration: none;
    text-underline-offset: 4px;
    color: #385a81;
}

.nav-div-links a:hover {
    width: 180px;
    border-radius: 15px;
    background-color: rgb(23, 23, 55);
    padding: 8px;
    overflow: hidden;
    color: #3c74b3;
    text-decoration: underline;
}

#nav-img {
    margin: 10px;
    border-radius: 15px;
}