* {
  margin: 0;
}
body {
  background-color: #000435;
}
section {
  border-bottom: 6px solid #FC5E00;
}
#title {
  background-image: url(../WebpageBackground.webp);
  background-color: #00000094;
  background-size: contain;
  align-content: center;
  text-align: center;
  padding: 0px 0px;
  margin: 0px auto;
  background-blend-mode: overlay;
  background-position: center;
  height: 100vh;
  max-height: 125vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#title-text {
  border: 6px solid #FC5E00;
  border-radius: 20px;
  background-color: #000435BB;
  width: 50%;
  margin: auto;
  position: relative;
  top: 10.45rem;
  z-index: 1;
  padding: 1rem;
}
#scroll-icon {
  height: 5rem;
  margin-bottom: 2rem;
  margin-top: auto;
}
h1, h2 {
  color: #FC5E00;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
h3, p, a {
  color: #B2CBDE;
}
h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
}
p {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}
#portfolios {
  display: flex;
  justify-content: center;
}
.portfolio {
  width: 50%;
  text-align: center;
}
.portfolio h2 {
  margin-bottom: 1rem;
}
.portfolio-image {
  height: 20vh;
  border: 8px solid #FC5E00;
  border-radius: 1.5rem;
  margin: 2rem auto;
}
button {
  margin: 15px;
  padding: 1.5rem;
  font-family: "Open Sans";
  font-weight: 500;
  font-size: 2.5rem;
  color:#000435;
  background-color: #FF5E00;
  border: 4px solid #FF5E00;
  border-radius: 2rem;
}
button:hover {
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  #portfolios {
    flex-direction: column;
  }
  h1 {
    font-size: 2.5rem;
  }
  #title-text {
    width: 75%;
    top: 2rem;
  }
  #scroll-icon {
    display: none;
  }
  .portfolio {
    width: 100%;
  }
  button {
    font-size: 2rem;
    padding: 1rem;
  }
}