* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container_image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
}

.container_image .heading {
    width: 50%;
    padding-bottom: 50px;
}

.container_image .heading h2 {
    font-size: 3em;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 3px solid #222;
}

.container_image .box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;}

.container_image .box .dream {
    display: flex;
    flex-direction: column;
    width: 32.5%;
    padding: 10px;
}

.container_image .box .dream img {
    width: 100%;
    padding-bottom: 15px;
    border-radius: 5px;
}

.container_image .btn {
    margin: 40px 0 70px 0;
    background: #222;
    padding: 15px 40px;
    border-radius: 5px;
}

.container_image .btn:hover {
    background-color: rgb(65, 61, 61);
}

.container_image .btn a {
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bolder;
}

@media only screen and (max-width: 769px) {
    .container_image .box {
        flex-direction: column;
    }

    .container_image .box .dream {
        width: 100%;
    }
}

@media only screen and (max-width: 643px) {
    .container_image .heading {
        width: 100%;
    }

    .container_image .heading h2 {
        font-size: 1em;
    }
}
