.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 40px;
    background-color: #EFEFEF;
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.25);
    padding-left: 15px;
    padding-right: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.header a {
    color: black;
    font-size: clamp(14px, 3vw, 20px);
}