* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
}
#header-section {
  background-image: url(img/top-banner.png);
  background-repeat: no-repeat;
}
.flexible-wrapper {
  display: flex;
  padding: 3%;
}
.highlight {
  color: #ffa500;
}
.half-width {
  width: 40%;

  margin-left: 5%;
  padding-left: 2%;
}
.half-width h1 {
  font-size: 40px;
  margin-bottom: 40px;
}
.half-width h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.half-width p {
  color: dimgray;
  margin-bottom: 50px;
}
.half-width a {
  background: linear-gradient(45deg, lightsalmon, tomato);
  padding: 10px 40px;
  border-radius: 5px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}
.half-width img {
  width: 100%;
}
#dream-big {
  background-image: url(img/dream-bg.png);
  background-repeat: no-repeat;
  background-position: right;
}
#dream-big .half-width a {
  background: linear-gradient(45deg, lightsalmon, tomato);
  padding: 10px 80px;
  border-radius: 5px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}
.experience-area {
  background-image: url(img/exp-bg.png);
  background-repeat: no-repeat;
  background-position: left;
}
.experience-area h1 {
  font-size: 40px;
}
.experience-items {
  display: flex;
  padding: 0 3% 3%;
  min-height: 500px;
}
.experience {
  width: 50%;
  margin-left: 50px;
  padding: 2%;
  box-shadow: 4px 4px 10px gray;
  border-radius: 4px;
}
.experience h1 {
  margin-bottom: 25px;
}
.experience h3 {
  margin-bottom: 25px;
}
#web-exp {
  border-left: 7px solid;
  border-image: linear-gradient(180deg, lightsalmon, tomato);
  border-image-slice: 1;
}
#baby-web {
  border-left: 7px solid;
  border-image: linear-gradient(180deg, blue, cyan);
  border-image-slice: 1;
}
footer p {
  text-align: center;
  color: gray;
}
