body {
    font-family: Arial, sans-serif;
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
  }

  .content {
    width: 80%;
    max-width: 960px;
    margin: 0 auto;
  }

.header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Use 'flex-start' for left, 'center' for center */
  padding: 16px 32px;
  background: linear-gradient(to right, #0072ff, #6c00ff, #ff7300);
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu li {
  margin-right: 24px;
}

.menu li:last-child {
  margin-right: 0;
}

.menu a {
  text-decoration: none;
  color: #f9fd01;
  font-size: 24px;
  padding: 8px 12px;
  display: inline-block;
}

.header-text {
  /* For left-aligned text: */
  text-align: left;
  /* For centered text: */
   margin: 0 auto; text-align: center; width: 100%; 
   font-family: Arial, sans-serif;
  font-size: 2.5rem;   /* Adjust size as needed */
  color: #fff;

}

.home-btn {
  background-color: #28a745; /* Green */

  color: #fff;
  font-size: 1rem;           /* 16px is the recommended minimum for mobile */
  font-family: Arial, sans-serif;
  font-size: 24px;
  background-color: #28a745; /* Green */
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  
  text-align: center;
  display: inline-block;
   transition: transform 0.2s, box-shadow 0.2s;
}

 

/* Change to red on hover */
.home-btn:hover {
  background-color: #fc031c;
   transform: scale(1.1);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}




footer {
  background-color: #0bf11b;
  color: #fff;
  padding: 20px;
  text-align: center;
}

@media (max-width: 400px) {
  .home-btn {
    font-size: 0.95rem; /* Slightly smaller, but stay above 14px */
  }
}
@media (max-width: 900px) {
  .image-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .image-group {
    grid-template-columns: 1fr;
  }
}