.main-banner {
    background: url("../img/banner.jpg");
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-banner__h1 {
    font-size: 46px;
    color: white;
    background-color: rgb(0, 0, 0, 0.6);
    text-transform: uppercase;
    width: 40%;
    line-height: 1.5;
    text-align: center;
    margin: 100px auto;
}

@media (orientation: landscape) and (max-width: 1023px) {
    .main-banner__h1 {
        font-size: 26px;
        margin: 40px auto;
    }
}

@media (orientation: landscape) and (max-width: 568px) {
    .main-banner__h1 {
        font-size: 20px;
        margin: 20px auto;
    }
}

@media (orientation: portrait) and (max-width: 767px) {
    .main-banner__h1 {
        font-size: 26px;
        margin: 20px auto;
    }
}

.main-banner__paragraph {
    font-size: 24px;
    color: white;
    background-color: rgb(0, 0, 0, 0.6);
    text-transform: uppercase;
    width: 60%;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 50px;
}

@media (orientation: landscape) and (max-width: 1023px) {
    .main-banner__paragraph {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

@media (orientation: landscape) and (max-width: 568px) {
    .main-banner__paragraph {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

@media (orientation: portrait) and (max-width: 767px) {
    .main-banner__paragraph {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.main-banner__button {
    display: block;
    text-decoration: none;
    font-size: 26px;
    color: white;
    background-color: #fe9920;
    border: 2px solid rgb(0, 0, 0, 0.6);
    padding: 20px 30px;
    text-transform: uppercase;
    transition: .2s;
}

@media (min-width: 1025px) {
    .main-banner__button:hover {
        background-color: rgb(0, 0, 0, 0.6);
        border: 2px solid#fe9920;
    }
}

@media (orientation: landscape) and (max-width: 1023px) {
    .main-banner__button {
        font-size: 14px;
        padding: 10px 15px;
    }
}

@media (orientation: landscape) and (max-width: 568px) {
    .main-banner__button {
        font-size: 14px;
        padding: 10px 15px;
    }
}

@media (orientation: portrait) and (max-width: 767px) {
    .main-banner__button {
        font-size: 16px;
        padding: 10px 15px;
    }
}