@import url("https://fonts.googleapis.com/css2?family=Bad+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

#pages a {
  color: white;
  text-decoration: none;
}
#pages a:hover{
    text-decoration: underline;
}
#about_us i {
  font-size: 30px;
  margin-left: 10px;
  cursor: pointer;
}
footer {
  background-color: rgb(54, 54, 54);
  /* padding: 2rem;     */
  font-family: "Poppins"; 
  color: white;
}
#footer {
  width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
  padding: 2rem;
}
#recent_child {
  display: flex;
  justify-content: space-evenly;
}
#recent_child_img {
  width: 30%;
}
#recent_child_img img {
  width: 100%;
  padding-top: 20px;
}
#recent_child_desc {
  width: 50%;
}
#recent_child_desc_p {
  font-size: 11px;
}
#about_us_h1 {
  font-size: 30px;
}
#recent_h1 {
  font-size: 30px;
}
#contact_us_h1 {
  font-size: 30px;
}
#pages_h1 {
  font-size: 30px;
}
@media (min-width: 300px) and (max-width: 700px){
    #footer{
        grid-template-columns: repeat(1,1fr);
        gap: 20px;
    }
}
