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