@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.containerer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px 20px 0 20px;
}

.containerer .heading{
  width: 50%;
  padding-bottom: 50px;
}
.containerer .heading h3{
  font-size: 3em;
  font-weight: bolder;
  padding-bottom: 10px;
  border-bottom: 3px solid #222;
}

.containerer .heading h3 span{
  font-weight: 100;
}
.containerer .box{
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.containerer .box .dream{
  display: flex;
  flex-direction: column;
  width: 32.5%;
}

.containerer .box .dream img{
  width: 100%;
  padding-bottom: 15px;
  border-radius: 5px;
}

.containerer .btn{
  margin: 40px 0 70px 0;
  background: #222;
  padding: 15px 40px ;
  border-radius: 5px;
}

.containerer .btn a{
 color: #fff;
 font-size: 1.2em;
 text-decoration: none;
 font-weight: bolder;
 letter-spacing: 3px;
}

@media only screen and (max-width: 769px){
    .containerer .box{
   flex-direction: column;
  }

.containerer .box .dream{
  width: 100%;
}





}

@media only screen and (max-width: 643px){
.container .heading{
  width: 100%;
}
.container .heading h3{
  font-size: 1em;

}







}