*
{
  padding: =0px;
}
body{
    background-color: white;
    
}

/* Default styles for larger screens */
.aboutusheading {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #2b2b2b;
}

.aboutus {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 15%;
    text-align: justify;
}

/* Media query for devices with a width of 768px or less */
@media (max-width: 768px) {
    .aboutusheading {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .aboutus {
        font-size: 16px;
        margin: 0 10%;
    }
}

/* Media query for devices with a width of 480px or less */
@media (max-width: 480px) {
    .aboutusheading {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .aboutus {
        font-size: 14px;
        margin: 0 5%;
    }
}


.links a.active{
  color: #FF7F50; /* Change to your desired color */
}


/* DESIGN AND DEVELOPED START FROM HERE */
.designDevloped {
  background-color: navy;
  color: white;
  font-size: 16px;
  text-align: center;
  height: 5vh;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;    /* Centers vertically */
}

@media (max-width: 600px) {
  .designDevloped {
    font-size: 12px; /* Adjust font size for smaller screens */
    height: 4vh;    /* Adjust height for smaller screens */
  }
}
/* END DESIGN AND DEVELOPED HERE */