
.body{
  padding-top: 10vh;
  background-color: #19171b;
  overflow: hidden;
}

.about-us-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  padding: 2rem;
  background-image: url('../Images/Sydney.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}



.about-us-title {
  margin: 4rem auto; 
  max-width: 65rem;
  text-align: left;
  padding: 0 0.2rem;
  color: white;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Sora";
  /*padding-bottom: 10px; /* Optional: adds space above the border */
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 1);
  margin-bottom: 8px;
  
}

.about-us-text {
  margin: 0 auto 10vh auto;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 1);
  max-width: 65rem;
  padding: 1rem 0.2rem;
  text-align: justify;
  color: white;
  font-family: "Inter";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;

  border-top: 4px solid#92d0c3;
}

/* MEDIA QUERY FOR SMALLER SCREENS */
@media (max-width: 768px) {
  .about-us-title,
  .about-us-text {
    font-size: 1.5rem;
    text-align: left;
  }

  body {
    overflow: auto;
  }

  .about-us-text {
    font-size: 1rem;
  }

  .footer p {
    font-size: 0.8rem;
  }
}