@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
}
.container .header{
    width: 50%;
    padding-bottom: 50px;
}
.container .header h3{
    font-size: 3em;
    font-weight: bolder;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}
.container .header 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: 50%;
}
.container .box .dream img{
    width: 100%;
    padding-bottom: 5px;
    padding: 5px;
    border-radius: 5px;
}
.container .box .dream img:hover{
    transform: scale(2.5);
    transition: 0.5s ease-in-out;
}

@media only screen and (max-width: 769px){
    .container .box{
        flex-direction: column;
    }
    .container .box .dream{
        width: 100%;
    }
    .container .box .dream img:hover{
        transform: none;
        transition: 0.5s ease-in-out;
    }
    .container .header h3{
        font-size: 2em;
        font-weight: bolder;
        padding-bottom: 10px;
        border-bottom: 1px solid #222;
    }
    
}

