.header {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: flex-start;
    justify-items: center;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    background-color: #000000;
    z-index: 1;
}

.logo {
    margin-left: 20px;
}

.header-name {
    font-family: Poppins, Open-Sans;
    color: #ffff00;
    font-size: 28px;
    margin-left: 18px;
    line-height: 60px;
}

@media (min-width: 360px) and (max-width: 767px) {
    .logo {
        margin-left: 0;
    }

    .header-name {
        margin-left: -5px;
        margin-right: 5px;
        font-size: 22px;
    }
}
