.wrapperHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapperHeader > .baseHeader {
    display: flex;
    align-items: center;
}

.logoImage {
    max-height: 200px;
    max-width: 200px;
    @media (max-width: 767px) {
        max-height: 200px;
        max-width: 200px;
    }
}

.logoText {
    padding: 10px;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Neuton', serif;
    @media (max-width: 767px) {
        font-size: 1.8rem;
    }
}

.headerLinks {
    @media (max-width: 767px) {
        display: none;
    }
}



button, a.button {
    background-color: #3498db;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}


button:hover, a.button:hover {
    background-color: #2980b9;
}


button:active {
    background-color: #216795; /
}