body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
h1{
    font-size: 45px;
}
.orange-highlight{
    color: orange;
}
.half-width{
    float: left;
    width: 40%;
    margin-left: 5%;
    padding-left: 2%;
}
.half-width img{
    width: 100%;
}
.half-width p{
    text-align: justify;
}
.top-banner{
    background-image: url("images/top-banner.png");
    background-repeat: no-repeat;
}
section{
    height: 500px;
    padding-bottom: 120px;
}
.link-button{
    text-decoration: none;
    background-image: linear-gradient(90deg, indigo, tomato);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    display: block;
    text-align: center;
    transition: 0.5s all ease;
    margin-top: 55px;
    font-weight: bold;
}
.link-button:hover{
    background-image: linear-gradient(90deg, tomato, indigo);
}
h2{
    font-size: 35px;
    font-weight: 600;
}
.dream-area h3{
    font-weight: 600;
}
.dream-area{
    height: 400px;
    background-image: url(images/dream-bg.png);
    background-repeat: no-repeat;
    background-position: right;
}
.single-area{
    box-shadow: 10px 10px 40px grey;
    border-radius: 5px;
    height: 70%;
}
.experience-area{
    background-image: url(images/exp-bg.png);
    background-repeat: no-repeat;
    background-position: left;
    margin-bottom: 0;
}
#full-stack{
    border-left: 7px solid;
    border-image: linear-gradient(180deg, orange, tomato) ;
    border-image-slice: 1;
}
#web-dev{
    border-left: 7px solid;
    border-image: linear-gradient(180deg, tomato, indigo) ;
    border-image-slice: 1;
}
.experience-area .half-width p{
    color: grey;
    padding-right: 15px;
}
footer p{
    text-align: center;
    font-size: 15px;
    color: grey;
}