.header {
    text-align: center;
    padding: 1rem 0rem 0rem 0rem;
    background-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.headerNavigation {
    color: #4480b8;
    margin-top: 1rem;
    border-top: 2px solid #1c446f;
    border-bottom: 2px solid #1c446f;
    background: linear-gradient( 90deg, rgba(20, 169, 159, 0.15) 0%, rgba(20, 169, 159, 0.05) 50%, rgba(20, 169, 159, 0.15) 100% );
}

.headerList {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0rem 1rem 0rem 1rem;
}

.headerListPos {
        border: 2px solid #4480b8;
        padding: 0.4rem;
        border-radius: 5px;
}
 .headerListPos:hover {
    background-color: #4480b8;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.headerListPos a {
    color: #4480b8;
    text-decoration: none;
}

 .headerListPos:hover a {
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}
