/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #333;
    text-align: center;
    padding: 20px;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Input field */
#pokiname {
    padding: 10px;
    width: 250px;
    border: 2px solid #333;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    transition: border 0.3s ease-in-out;
}

#pokiname:focus {
    border: 2px solid #ff6600;
}

/* Button */
button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
}

button:hover {
    background-color: #ff6600;
    transform: scale(1.05);
}

/* Image */
#pokeImg {
    margin-top: 20px;
    width: 200px;
    height: auto;
    border: 5px solid #333;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

#pokeImg:hover {
    transform: rotate(5deg) scale(1.1);
}

/* Responsive Design */
@media (max-width: 600px) {
    #pokiname {
        width: 200px;
    }
    
    button {
        padding: 8px 16px;
        font-size: 14px;
    }

    #pokeImg {
        width: 150px;
    }
}
