*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.go-back {
    position: absolute;
    left: 2px;
    top: 20px;
}

.go-back a {
    text-decoration: none;
    color: #3498db; /* Change the color as needed */
    font-weight: bold;
    display: flex;
    align-items: center;
    letter-spacing: -1px;
}


.go-back:hover a {
    color: #2980b9; /* Change the color on hover */
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0px 0px 0px 0px;
    background: linear-gradient(
  to bottom,
  rgba(173, 216, 230, 0.4), 
  rgba(215, 123, 36, 0.2) , 
  rgba(122, 146, 77, 0.4)  
)
}

.container .heading{
    width: 50%;
    /* padding-bottom: 50px; */
}

.container .heading h3{
    font-size: 3em;
    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;
}

.container .box .dream{
    display: flex;
    flex-direction: column;
    width: 32.5%;
}
.container .box .dream img{
    width: 100%;
    padding-bottom: 15px;
    border-radius: 5px;
}

@media only screen and (max-width: 800px){
    .container .box{
        flex-direction: column;
    }
    .container .box .dream{
        width: 100%;
    }
}
@media only screen and (max-width: 645px){
    .container .heading{
        width: 100%;
    }
    
    .container .heading h3{
        font-size: 2em;
    }
}