*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    text-align: center;
    margin: 40px 20px 0 20px;
}
.container .heading{
    width: 50%;
    padding-bottom: 50px;
}
.container .heading h3{
font-size: 3rem;
font-weight: bolder;
padding-bottom:10px ;
border-bottom: 3px solid #222;
}
.container .heading h3 span{
    font-weight: 100;   
}
.container .box{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   height: 80%;
}
.container .box .dream{
    display: flex;
    flex-direction: column;
    width: 32.5%;

}
.container .box .dream img{
    width: 100%;

    padding-bottom: 15px;
    border-radius: 5px;
}
@media screen and (max-width: 796px) {
    .container .box{
        flex-direction: column;
     }
     .container .box .dream{
        width: 100%;
    }
}
@media screen and (max-width: 643px) {
    .container .heading{
        width: 75%;
    }
    .container .heading h3{
    font-size: 2rem;
    }
}