* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    width: 100%;
    height: 100vh;
    background: rgb(10,51,0);
    background: linear-gradient(45deg, rgba(10,51,0,1) 16%, rgba(163,102,0,1) 100%);
    color: white;
}

/*
MAIN CONTENT
MAIN CONTENT
MAIN CONTENT
MAIN CONTENT
MAIN CONTENT
*/

.main__content {
    width: 35%;
    height: 50vh;
    margin: 25vh 0;
    padding: 0 30px;
    float: left;
}


.main__content--title {
    text-transform: uppercase;
    font-size: 50px;
}
.main__content--title b {
    color: #54e600;
}

.main__content--subtitle {
    text-transform: uppercase;
    font-size: 20px;
    color: #B7FA91;
}

.line {
    width: 350px;
    height: 2px;
    margin: 10px 0;
}

.info {
margin: 20px 0;
}

.info p {
    display: inline-block;
}

.info__title {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 25px;
    color: #54e600;
}

.info__text {
    font-size: 18px;
}

.main__content--btn {
    text-decoration: none;
    color: white;
    padding: 12px;
    font-weight: 500;
    background-color: rgb(0, 0, 0);
    text-transform: uppercase;
    transition: 0.3s;
    border: 2px solid rgb(0, 0, 0);
}

.main__content--btn:hover {
    color: black;
    background-color: rgba(255, 255, 255, 0.582)
}

/*
FLEXBOX CONTAINER
FLEXBOX CONTAINER
FLEXBOX CONTAINER
FLEXBOX CONTAINER
FLEXBOX CONTAINER
*/

.container {
    height: 60vh;
    width: 65%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 5vh;
}

.container__item, img {
    width: 300px;
}

.container img {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.521);
    transition: all .2s ease-in-out;
    opacity: 0.8;
}

.container img:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.76);
    opacity: 1;
}

.container__title {
    text-transform: uppercase;
    font-size: 50px;
    height: 15vh;
    text-align: center;
    padding: 10vh 0;
}

.container__title b {
    color: #54e600;
}

.container b {
    color: #54e600;
}

/*
MEDIA
MEDIA
MEDIA
MEDIA
MEDIA
*/

@media screen and (max-width:1550px) {
    body {
        height: max-content;
        width: 100%;
    }

    .main__content {
        width: 100%;
        height: max-content;
        margin: 50px auto;
        padding: 0;
        display: inline-block;
        text-align: center;
    }
    
    .line {
        margin: auto;
        background-color: white;
    }

    .info {
        width: 100%;
        text-align: center;
    }

    .info__text:nth-child(3) {
        margin: 0 300px;
    }

    .container__title {
        display: inline-block;
        width: 100%;
        padding: 0;
    }

    .container {
        width: 100%;
        height: max-content;
    }
}

@media screen and (max-width: 1100px) {
    body {
        height: max-content;
        width: 100%;
    }

    .main__content {
        width: 100%;
        height: max-content;
        margin: 50px auto;
        padding: 0;
        display: inline-block;
        text-align: center;
    }

    .main__content--title {
        font-size: 60px;
    }

    .main__content--subtitle {
        font-size: 25px;
    }

    .line {
        width: 450px;
        height: 3px;
    }

    .info {
        margin: 10px 0;
    }

    .info__title {
        font-size: 30px;
    }

    .info__text {
        font-size: 20px;
    }

    .info__text:nth-child(3) {
        margin: 0 50px;
    }

    .main__content--btn {
        font-size: 25px;
        padding: 15px;
    }

    .container {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-around;

    }

    .container div {
        margin: 20px 0;
    }

    .container img {
        height: 100%;
    }

}

@media screen and (max-width: 700px) {
    body {
        height: max-content;
    }
    
    .container {
        max-width: 100%;
        margin: 0;
        padding: 0;
        justify-content: space-around;
    }

    .container__item {
        width: 100%;
        text-align: center;
    }

    .container img {
        width: 80%;
        margin: 0 10%;
    }

    .container__item h1, p {
        margin: 20px 0;
    }

    .container p {
        font-size: 20px;
    }

}