body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f7f7f7;
}

h1 {
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 10px;
    background-color: #fff;
    margin: 10px auto;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

li:first-child {
    animation: firstPlace 1s ease-in-out;
}

li:not(:first-child) {
    opacity: 0;
    transform: translateX(-100%);
    animation: slideIn 0.5s forwards;
}

@keyframes firstPlace {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
        background-color: #ffdd57;
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

