    body {
        margin: 0;
        padding: 10px;
        font-family: 'Times New Roman', Times, serif;
        background: #f5f5f5;
        background-color: rgb(22, 231, 22);
        border: 10px solid yellow
    }

    h1 {
        text-align: center;
        margin-bottom: 20px;
        text-decoration: underline;
    }

    .yearbook-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .student-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px
    }

    .student-card img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
    }

    .student-card img:hover {
        transform: scale(1.1);
    }

    .student-picture {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .card-content {
        padding: 15px;
    }

    .student-name {
        font-size: 1.5rem;
        margin-bottom: 8px;
        font-weight: bold;
        text-align: center;
    }

    .quote {
        font-style: italic;
        margin-bottom: 10px;
        text-align: center;
        color: #555;
    }

    .most-likely {
        font-size: 1rem;
        background: #eee;
        padding: 8px;
        border-radius: 6px;
        text-align: center;
    }

    @media (max-width: 500px) {
        .student-card {
            background: #418dd8;
        }
    }