.header-section {

    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 3;

    display: flex;

    align-items: stretch;
    
    background-color: rgb(32, 32, 32);
    opacity: 0.8;
    
    border-color: black;
    border: 1px solid;

    
}

.header-section > a:not(.header-logo) {
    display: flex;

    color: white;

    width: 10%;

    padding:0 1% 0 1%;

    text-transform: uppercase;

    font-weight: 800;
    font-size: 100%;

    justify-content: center;
    align-items: center;

    transition: color 1s;
}
.header-section > a:not(.header-logo):hover {
    color: rgb(0, 126, 126);
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    height: 100%;
    width: max-content;

    padding: 8px;

    font-weight: 700;
    text-transform: uppercase;

    color: white;

    margin-left:5%;
    margin-right: 5%;

    text-align: left;

}

.logo-title {
    font-family: Unageo-Bold;
    white-space: nowrap
}

.logo-name {
    font-size: 20px;
    white-space: nowrap
}

@media (max-width: 768px) {

    .header-section > a:not(.header-logo) {
        display: none;
    }

}
