#header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #374151;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    width: 100%;
    z-index: 3;
}

#header {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 10vh;
    width: 100%;
    max-width: 530px;
    box-sizing: border-box;
    color: white;
    min-height: 38px;
    max-height: 65px;
}

.header-title {
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.header-button {
    text-align: center;
    font-size: 10px;
    padding-top: 4px;
    color: white;
}

.header-button:hover {
    cursor: pointer;   
    opacity: 0.7;
}

.header-title, .header-button {
    margin-left: 15px;
    margin-right: 15px;
    transition: 0.15s;
}