article:first-child {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("../images/main.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

header {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    height: 15vh;
}

.menu {
    padding: 15px 0;
}

.menu__menu-item {
    margin: 10px;
    font-size: 18px;
    color: #fff;
}

.menu__menu-item:hover {
    color: #f00;
}

.main-info-container {
    height: 85vh;
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-info-container__title {
    color: #fff;
    font-size: 150px;
    line-height: 150px;
}

.main-info-container__description {
    margin-top: 20px;
    max-width: 60%;
    color: #fff;
    font-size: 18px;
    line-height: 27px;
}

.main-info-container__logo-container {
    color: #fff;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.main-info-container__logo-container img {
    width: 30px;
}

.main-info-container__btn-container {
    display: flex;
    margin-top: 40px;
}

.btn-container__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    border-radius: 25px;
    transition: .1s;
    font-weight: 550;
}

.btn-container__btn i {
    margin-right: 6px;
}

.btn-container__btn:first-child {
    background: rgba(255, 255, 255, .9);
    margin-right: 20px;
    color: #000;
}

.btn-container__btn:first-child:hover {
    background: rgba(255, 255, 255, 1);
}

.btn-container__btn:last-child {
    background: rgba(255, 255, 255, .3);
    color: #fff;
}

.btn-container__btn:last-child:hover {
    background: rgba(255, 255, 255, .4);
}

article:nth-child(2), article:nth-child(3) {
    background: #000;
}

.scenes-guide-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scenes-guide-container__header {
    display: flex;
    width: 60%;
    justify-content: space-between;
    color: #fff;
    padding: 30px 15px 50px 15px;
}

.scenes-guide-container__header h3 {
    font-size: 40px;
}

.scenes-guide-container__header select {
    width: 200px;
    height: 50px;
    border-radius: 25px;
    padding: 0 15px;
    color: #fff;
    cursor: pointer;
    outline: none;
    background: #ffffff19;
}

option {
    color: #000;
}

.scenes-guide-container__scenes-body {
    width: 100%;
    display: flex;
    justify-content: center;
}

.scenes-body__left-container {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.scenes-body__left-container img {
    width: 60%;
    margin: 10px 0;
    cursor: pointer;
}

.scenes-body__left-container img:hover {
    filter: brightness(.7);
}

.scenes-body__right-container {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.scenes-body__right-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.scenes-body__right-container p {
    font-size: 16px;
    line-height: 27px;
    margin-top: 30px;
}

article:nth-child(3) {
    width: 100%;
    display: flex;
    justify-content: center;
}

.text-container {
    width: 60%;
}

.text-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #fff;
    text-align: center;
}

.text-container p{
    color: #fff;
    line-height: 30px;
}

.gallery-container__title {
    text-align: center;
    color: #fff;
    font-size: 40px;
    padding: 50px 0;
}

.gallery-container__gallery {
    display: flex;
    justify-content: center;
}

table {
    width: 60%;
}

table tr td {
    text-align: center;
    padding: 10px 0;
}

table tr td img {
    width: 80%;
    cursor: pointer;
}

table tr td img:hover {
    width: 100%;
}

footer {
    background: #000;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.social-media-container {
    width: 80%;
    display: flex;
    justify-content: flex-end;
}

.social-media-container a {
    margin: 0 10px;
}

.social-media-container a i {
    color: #fff;
    font-size: 18px;
}

.social-media-container a i:hover {
    color: #f00;
    cursor: pointer;
}


@media screen and (max-width: 480px) {
    article:first-child {
        background-position: center;
    }

    header {
        height: 10vh;
    }

    .main-info-container__title {
        font-size: 60px;
        line-height: 70px;
    }

    .scenes-guide-container__header {
        flex-direction: column;
        padding-top: 0;
    }

    .scenes-guide-container__header select {
        margin-top: 10px;
    }

    .scenes-guide-container__scenes-body {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .scenes-body__left-container {
        width: 90%;
        flex-direction: row;
    }

    .scenes-body__left-container img {
        width: 30% !important;
        margin: 0 5px 20px 5px;
    }

    .scenes-body__right-container {
        width: 90%;
    }

    table {
        width: 90%;
    }
}