  body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        background-color: #f5f5f5;
    }

    h1 {
        color: #333;
        margin-bottom: 20px;
    }

    #search-input {
        width: 300px;
        padding: 10px;
        margin: 10px 0;
        border: 2px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    #search-button {
        padding: 10px 20px;
        border: none;
        background-color: #007bff;
        color: white;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    #search-button:hover {
        background-color: #0056b3;
    }

    div {
        text-align: center;
        margin-top: 20px;
    }

    p {
        font-size: 18px;
        margin: 5px 0;
        color: #555;
    }

    #types {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    #types div {
        background-color: #007bff;
        color: white;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 14px;
    }

    #sprite-container {
        margin-top: 20px;
    }

    #sprite {
        max-width: 150px;
        border: 2px solid #ccc;
        border-radius: 10px;
    }


