body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #4b532064;
}

header {
  background-color: #5a3d31;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  color: white;
}

header a {
  text-decoration: none;
  color: #ffd700;
  margin: 0 10px;
}
header a:hover {
  color: #28a745;
}
section {
  padding: 20px;
}

h1,
h2,
h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.6em;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.content-text {
  flex: 1;
  max-width: 50%;
}

.content img {
  flex: 0;
  max-width: 50%;
  max-height: 400px;
  border-radius: 10px;
}

.buttons {
  margin-top: 20px;
}

.buttons button,
button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover a {
  color: #000 !important;
}
.diary img {
  height: 400px;
}
.gallery,
.sports {
  text-align: center;
}

.gallery img,
.sports img {
  width: auto;
  max-width: 200px;
  height: 200px;
  margin: 10px;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.gallery img:hover,
.sports img:hover,
.diary img:hover {
  scale: 1.05;
  transition: all ease-out 0.5s;
}

.coming-soon {
  text-align: center;
  margin-top: 20px;
}

.coming-soon img {
  max-width: 300px;
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
}

footer {
  background-color: #4b5320; /* Indian army green color */
  color: white;
  padding: 20px;
  text-align: center;
}

footer a {
  color: #ffd700; /* Gold color for links */
  text-decoration: none;
  margin: 0 10px;
}

footer button {
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
  }

  .content-text,
  .content img {
    max-width: 100%;
  }

  .gallery img,
  .sports img {
    max-width: 150px;
  }
}
