@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.section-center {
  width: 90vw;
  margin: 0 auto;
  padding: 4rem 0;
  max-width: 1370px;
}
.btn-primary {
  text-decoration: none;
  background: linear-gradient(to right, lightsalmon, tomato);
  display: inline-block;
  padding: 0.6rem 2rem;
  color: #fff;
  font-size: 1.5rem;
  text-transform: capitalize;
  border-radius: 0.5rem;
}
p {
  color: dimgray;
}
/* about section start */
.about {
  background: url("./images/top-banner.png") no-repeat;
}
h1 {
  font-size: 45px;
  text-transform: capitalize;
}
h2 {
  font-size: 40px;
  text-transform: capitalize;
}
.title {
  color: orange;
}
.sub-title {
  padding-top: 1.5rem;
  max-width: 26rem;
}
.text {
  padding: 1.5rem 0;
}
.half-width img {
  width: 100%;
  height: 100%;
}
.half-width {
  padding: 1rem 0;
}
@media screen and (min-width: 860px) {
  .half-width {
    float: left;
    margin: 0 2%;
    width: calc(50% - 4%);
  }
}

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

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

.single-experience {
  box-shadow: 10px 10px 40px gray;
  border-radius: 5px;
  margin: 2rem 2%;
  padding-left: 10px;
  background: #fff;
  height: 430px;
}

#full-stack {
  border-left: 7px solid;
  border-image: linear-gradient(lightsalmon, tomato);
  border-image-slice: 1;
}
#baby-dev {
  border-left: 7px solid;
  border-image: linear-gradient(blue, cyan);
  border-image-slice: 1;
  height: 385px;
}

footer p {
  text-align: center;
}
footer a {
  color: orange;
  text-decoration: none;
}
footer a:hover {
  color: #696969;
}
@media screen and (min-width: 860px) {
  .single-experience {
    height: 385px;
  }
}
