/* Navigation Bar */
#navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff0044;
  height: 10vh;
}

#atags {
  width: 50vw;
  display: flex;
  justify-content: space-evenly;
}

#atags a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

#atags a:hover {
  text-decoration: underline;
}

/* Page Headers */
h1 {
  text-align: center;
  color: #ff0044;
  margin-top: 20px;
}

p {
  text-align: center;
}

/* Gallery Layout */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
  justify-items: center;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Buttons */
.button {
  display: inline-block;
  background-color: #ff0044;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.button:hover {
  background-color: #cc0036;
}

/* About Page */
#aboutbody {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* About Page Styling */
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  max-width: 700px;
  margin: auto;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

