@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Macondo&display=swap');

body {
  margin: 0;
  font-family: "Dosis", serif;
  background-color: black;
  color: red;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 34px;
}

p {
  color: green;
  font-size: 22px;
}

.orange-highlight {
  color: orange;
}

.half-width {
  width: 40%;
  float: left;
  margin-left: 5%;
  padding-left: 2%;
}

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

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

section {
  height: 500px;
  padding-bottom: 100px;
}

.link-buttoon {
  text-decoration: none;
  background-image: linear-gradient(45deg, blue, cyan);
  padding: 10px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  font-size: 22px;
}

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

.single-experience {
  box-shadow: 10px 10px 40px gray;
  border-radius: 5px;
  height: 80%;
}

#full-stack {
  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 {
  text-align: center;
  box-shadow: 10px 10px 40px cyan;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .half-width {
    width: 90%;
    float: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  section {
    height: auto;
    padding-bottom: 50px;
  }

  h1, h2 {
    font-size: 28px;
  }

  p {
    font-size: 18px;
  }

  .link-buttoon {
    font-size: 18px;
    padding: 8px;
  }
}

@media (max-width: 768px) {
  h1, h2 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

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

  .link-buttoon {
    font-size: 16px;
    padding: 6px;
  }
}

@media (max-width: 480px) {
 
  h1, h2 {
    font-size: 20px;
    text-align: center;
  }

  p {
    font-size: 14px;
  }

  .link-buttoon {
    font-size: 14px;
    padding: 4px;
  }

  section {
    padding-bottom: 20px;
  }
}
