ENGLISH:
Hi, i'm Shadoulex. I make short games, and sometimes i like to experiment with new formats.
SPANISH:
Hola, soy Shadoulex. Hago juegos cortos, y a veces me gusta experimentar con nuevos formatos.
<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Itch.io Custom</title> <style> /* Cursor personalizado */ body { cursor: url('https://yourcustomcursor.com/cursor.png'), auto; background-color: #1a1a1a; color: white; font-family: Arial, sans-serif; text-align: center; padding: 50px; } /* Contenedor de imágenes */ .image-container { display: flex; justify-content: center; gap: 20px; margin-top: 20px; } .box { width: 200px; height: 200px; background-color: #333; position: relative; overflow: hidden; transition: background 0.3s; } .box img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.5s ease-in-out; } .box:hover img { opacity: 1; } </style> </head> <body>Pasa el cursor sobre los cuadros para revelar las imágenes.