
body {margin: 0;
  font-family: 'Gloria Hallelujah', cursive;
  background: #fffefc;
  color: #4a2e2e;}

header { background-color: #ffefc1;
  padding: 2em;
  text-align: center;
  border-bottom: 3px dotted #f7c59f;}

header h1 {font-size: 2.5em;
  margin: 0;}

nav {background-color: #ffe4f2;
  text-align: center;
  padding: 1em;}

nav a {margin: 0 15px;
  text-decoration: none;
  color: #d2649a;
  font-weight: bold;}

nav a:hover { text-decoration: underline;}

.intro {text-align: center;
  padding: 1em;
  background-color: #fdf2f8;
  font-size: 1.2em;}

.album-grid {display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 2em;
  background-color: #f5faff;}

.student-card { background: #fff8f0;
  border: 2px dashed #e0b0ff;
  border-radius: 15px;
  padding: 1em;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(255, 183, 197, 0.3);
  transition: transform 0.3s ease;}

.student-card:hover {transform: scale(1.05);}

.student-card img { width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffcce0;
  margin-bottom: 10px;}

.photo-gallery { display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 2em;
  background-color: #e6f2ff;}

.photo-gallery img {  width: 250px;
  border: 4px solid #ffd1dc;
  border-radius: 12px;
  box-shadow: 3px 3px 10px rgba(255, 192, 203, 0.5);
  transition: transform 0.3s ease;}

.photo-gallery img:hover {  transform: scale(1.05);}

footer { text-align: center;
  padding: 1em;
  background-color: #ffefc1;
  font-size: 0.9em;
  color: #775f5f;}
