header {
    background-color: var(--background-color-1);
    width: 80vw;
    height: 6em;
    left: 10%;
    top: 3vh;
    border-radius: 5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    position: fixed;
    align-items: center;
    z-index: 2;
}


.header-flex {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.header-texts {
    display: flex;
    flex-direction: column;
}

.header-buttons {
    display: flex;
    flex-direction: row;
    width: 75%;
    height: 100%;
    margin-left: auto;
    margin-right: 5%;
    justify-content: center;
    align-items: center;
    gap: 2%;
}




.header-logo {
    height: 100%;
    width: fit-content;
}

.header-button {
    width: 15%;
    height: 50%;
    border-radius: 1em;
    font-weight: 500;
    background-color: var(--button-color-1);
    border: none;
    cursor: pointer;
    font-size: 100%;
    box-shadow: 0 1px 2px rgba(120, 119, 119, 0.15);
    transition: 0.2s;
}

.header-text {
    font-size: 1.3em;
    font-weight: 450;
}



.header-button:hover {
    box-shadow: 0 1px 2px rgba(29, 29, 29, 0.15);
    transform: scale(1.01);
    transition: 0.2s;
    background-color: var(--background-color-2);
}