/* google font */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

/* start the style */
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
}
.orange-color{
    color: orange;
}
h1{
    font-size: 50px;
}
h2{
    font-size: 38px;
}
.flexible-container{
    display: flex;
}
.top-banner{
    background-image: url(../images/top-banner.png);
    background-repeat: no-repeat;
}
.half-width{
    width: 50%;
    padding: 5%;
}
.half-width img{
    width: 80%;
}
.click-btn{
    text-decoration: none;
    background-image: linear-gradient(orange, tomato);
    color: white;
    font-weight: 700;
    padding: 10px 40px;
    border-radius: 5px;
}
.link-btn{
    margin-top: 30px;
}

/* dream big section */
.dream-big{
    background-image: url(../images/dream-bg.png);
    background-repeat: no-repeat;
    background-position: right;
}
/* experiences area */
.exp-section{
    background-image: url(../images/exp-bg.png);
    background-repeat: no-repeat;
    background-position: left;
}
.dev-card{
    box-shadow: 10px 10px 40px gray;
    /* box-shadow: 60px -16px teal; */
    margin-left: 5%;
    margin-right: 5%;
    border-radius: 10px;
}
#full-stack{
    border-left: 9px solid tomato;
}
#baby-stack{
    border-left: 9px solid blue;
}