.header {
    position: absolute;
    top: 1em;
    right: 0;
    left: 1em;
    display: flex;
    flex-direction: row;
    min-height: 80px;
    z-index: 100;
}

.left-section {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.middle-section {
    flex: 1;
    display: flex;
    flex-direction: row;
}
.right-section {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-right: 2em;
    gap: 1em;
}

.header-button {
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    width: 100px;
    font-size: 20px;
    font-family: "Lora";
}
.reservation-button {
    border-style: inset;
    min-width:180px;
    padding: 15px 15px 15px 15px;
    text-align: center;
    font-size: 15px;
    margin-left: 15px;
}

@media screen and (max-width:1100px) {
    
    .header {
        right: 1em;
        left: 1em;
    }
    .header-button{
        font-size: 1.6em;
    
    }
    .reservation-button {
        font-size: 1.5em;
    }
}