.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    display: inline-block;
}

.logo img {
    height: 40px;
}

.header .page-title {
    display: inline-block;
    font-family: 'GothamHeavy', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    margin: 9px 0 0 20px;
    vertical-align: bottom;
}
@media (width <= 480px) {
    .page-title {
        display: none;
    }
}

.logout-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-family: "GothamBold" !important;
    background-color: #b1206e;
}

.logout-btn:hover {
    background-color: #95205e;
}
