/* Part one start */
.part-one {
    background-image: url('../images/green-mountains.jpg');
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
    min-height: 31.25rem;
    position: relative;
}

.part-one h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);

    color: white;
    text-align: center;

    font-family: 'Roboto', sans-serif;
    font-size: 2.625rem;
    font-weight: 700;
    letter-spacing: 0.0625rem;
}

@media (min-width: 62.5em) {   /* 1000px */
    .part-one {
        min-height: 25.625rem;
    }
}
/* Part one end */


/* Part two start */
.part-two {
    background-color: rgb(249, 249, 249);
    
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}

.part-two-text {
    max-width: 95%;

    margin-left: auto;
    margin-right: auto;
}

.part-two h2 {
    margin-bottom: 1.375rem;

    color: #2e2e2e;
    line-height: 2.25rem;
    letter-spacing: 0.0625rem;

    font-family: 'Roboto', sans-serif;
    font-size: 1.4375rem;
    font-weight: 900;
}

.part-two p {
    margin-bottom: 1.375rem;

    line-height: 1.375rem;

    font-size: 0.875rem;
    font-weight: 400;
}

.part-two img {
    max-width: 100%;

    display: block;
    
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 30em) {   /* 480px */
    .part-two-text {
        max-width: 80%;
    }
}

@media (min-width: 46.875em) {   /* 750px */
    .part-two h2 {
        font-size: 1.75rem;
    }

    .part-two p {
        font-size: 1rem;
    }
}

@media (min-width: 62.5em) {   /* 1000px */
    .part-two-text {
        max-width: 70%;
    }
}
/* Part two end */