* { 
  box-sizing: border-box; 
  margin: 3px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #2dd2e15d;
  color: #222;
}

header {
  text-align: center;
  background: #405681;
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.yearbook {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 19px;
  padding: 10px;
}

.student {
  background: white;
  width: 220px;
  border: 2px solid #4c95ca;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.student:hover {
  transform: translateY(-12px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.student img {
  width: 100%;
  border-radius: 6px 6px 0 0;
  margin-left: auto;
  margin-top: auto;
}

.student h2 {
  margin: 8px 0 4px;
  color: #333;
}

.student .quote {
  font-style: italic;
  color: #555;
  margin: 4px 8px;
}

.student .most {
    font-weight: bold;
    color: #2a5d9f;
    margin-bottom: 10px;
}

@media (max-width: 500px) {
    body { background: #eaccccd3; }
    header { background: #0b80d3;}
    .student {
      background: #2086cf82;
      width: 90%;}
    .student .most {
    color: #9f2a2a;}
}