body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.yearbook-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.student-card {
    width: 250px;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.student-card:hover {
    transform: scale(1.05);
}

.student-card img {
    width: 100%;
    border-radius: 10px;
}

.quote {
    font-style: italic;
    margin-bottom: 10px;
}

.most {
    font-weight: bold;
    color: #555;
}

@media (max-width: 500px) {
    .student-card {
        background-color: #ffe6b3;
    }
}
