body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
h1{
    font-size: 50px;
}
h2{
    font-size: 40px;
}
.orange-color{
    color: orange;
}

.flexible-container{
    display: flex;    
    margin-bottom: 150px;
}

.half-width{
    width: 50%;
    padding-left: 8%;
}

.half-width img { 
    width: 80%;
    
}

.link-button{
    text-decoration: none;
    border-radius: 5px;
    background-image: linear-gradient(orange,tomato);
    color: white;
    font-weight: 700;
    padding: 10px 40px;

}

.top-banner{
    background-image: url(./images/top-banner.png);
    background-repeat: no-repeat;
}

.dream-big{
    background-image: url(./images/dream-bg.png);
    background-repeat: no-repeat;
    background-position: right;
}

.experience-item{
    box-shadow: 10px 10px 40px gray;
    margin: 0% 5% 0% 5%;
    padding: 0px 0px 0px 20px ;
    width: 40%;
    border-radius: 10px;
}

.experience-area{
    background-image: url(./images/exp-bg.png);
    background-repeat: no-repeat;
    background-position: left;
}

#exp-1{
    border-left: 5px solid;
    border-image: linear-gradient(orange,tomato);
    border-image-slice: 1;
}

#exp-2{
    border-left: 5px solid;
    border-image: linear-gradient(blue,cyan);
    border-image-slice: 1;
}

footer{
    text-align: center;
}