.banner {
    width: 100%;
    height: 100vh;
    background-image: url("../../img/header/banner.jpg");
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner__title  {
    color: #fdfdfd;
    font-size: 60px;
    letter-spacing: 20px;
    margin-left: 10px;
}

.banner__subtitle  {
    color: #fdfdfd;
    font-size: 17px;
    letter-spacing: 18px;
    margin-left: 9px;
}

@media screen and (min-width: 922px)  {
    .banner {
        height: 50vh;
    }

    .banner__title {
        font-size: 100px;
    }

    .banner__subtitle  {
        font-size: 28px;
        letter-spacing: 21px;
    }
}