header {
    display: flex;
    position: fixed;
    background-color: #ffffff;
    flex-direction: row;
    height: 100px;
    justify-content: space-between;
    width: 100vw;
    align-items: center;
    z-index: 100;
    top: 0;
}

.cool-button-neutral {
    color: #505050;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 20px;
    transition: .3s; 
    font-weight: bold;
}
.cool-button-neutral:hover {
    background-color: #edefef;
}

.cool-button.active {
    background-color: var(--hover-color);
    color: var(--button-text-color)
}


@media (max-width: 1200px) {
    header {
        flex-direction: column;
        justify-content: space-around !important;
        height: 150px !important;
    }
    
    #logo-modal {
        margin-left: 0 !important;
    }
    .header-button-container {
        margin-right: 0 !important;
        transform: scale(.9);
    }

}