@import url('https://fonts.googleapis.com/css?family=Poppins');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background-color: rgb(210, 186, 173);
}

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

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

h2 {
    text-shadow: 2px;
    font-size: 3em;
    font-weight: bolder;
    border-bottom: 3px solid #242424;
    padding-bottom: 5px;
}

span {
    font-weight: 75;
}

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

.dream {
    display: flex;
    flex-direction: column;
    width: 32.5%;
}

img{
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px 5px;
}

p {
    text-align: center;
    padding-bottom: 10px;
}

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

        .dream {
            width: 100%;
        }
}

@media only screen and (max-width: 700px){
    .heading {
        width: 50%;
    }

    h2 {
        font-size: 1.5em;
    }
}