body, html{
  height: 100%;
  margin: 0;
  font-family: "Quicksand", serif;
  background-color: white;

}


@media (max-width: 768px) {
  .desktop-only {
      display: none; /* Hide desktop content on mobile */
  }

  .mobile-only {
      display: block; /* Show mobile content on mobile */
  }
}

@media (min-width: 769px) {
  .desktop-only {
      display: block; /* Show desktop content on desktop */
  }

  .mobile-only {
      display: none; /* Hide mobile content on desktop */
  }
}

.project-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parent {
  display: flex; 
  justify-content: center; /* Centers horizontally */ 
  align-items: center;    /* Centers vertically */
}

.introduction {
  min-width: 400px;
  max-width: 800px;
  text-align: center;
  display: block;

}

.trns-text {
    max-width: 100%;
    background: url(DSC_2357.webp)   -20px -20px no-repeat;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    /* Below is not needed */
    display: block;
    font-size: 10vw;
    font-family: "Quicksand", serif;
    text-align: center;
    margin-top: -20px;
    font-weight: bold;
    letter-spacing: 25px;
    background-size: cover;
  }

  h1,h2,h3,h4,h5,p {
    font-family: "Quicksand", serif;
  }

  body{
    background-color: white;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
.top-header {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 90%;
}
.top-arrow {
  width: 100%;
  height: 10%;
}

.sec2,
.sec1 {
  width: 100%;
  height: 100vh;
  background-color: white;
  color: black;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: poppins;
}
.sec2 > h1 {
  animation: revealing;
  animation-timeline: view(block);
  animation-range: cover 0% cover 50%;
  margin: 0px;
}
.sec2 > ul {
  animation: revealing;
  animation-timeline: view(block);
  animation-range: cover 0% cover 50%;
  margin: 0px;
}
.sec2 > li {
  animation: revealing;
  animation-timeline: view(block);
  animation-range: cover 0% cover 50%;
  margin: 0px;
}
@keyframes revealing {
  from {
    color: gray;
    margin-left: 100vw;
    filter: blur(50px);
    opacity: 0.5;
  }
  to {
    margin: 0px;
    filter: blur(0px);
    opacity: 1;
  }
}