* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #FCEFFE;
    color: #333;
    text-align: center;
    padding-top: 50px;
}

header h1 {
    font-size: 3em;
    color: #ff7b7b;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.1);
}

#anime-cats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.cat-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.animated-cat {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: inherit;
}

.cat-box:hover {
    transform: scale(1.05);
    cursor: pointer;
}

footer p {
    font-size: 0.8em;
    color: #aaa;
    margin-bottom: 20px;
}
