Tú dijiste:
a esta imagen quitale el fondo dejando solo a los tres personajes e insertalo en este codigo en la esquina superior izquierda de la pantalla .dame el codigo entero con esta modificacion <!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<title>Camilo</title>
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<style>
/* ---------- AJUSTES GENERALES ---------- */
body {
margin: 0;
padding: 0;
background-image: url('cespedfondo.png');
background-repeat: repeat;
font-family: Arial, sans-serif;
height: 100vh;
position: relative;
overflow-x: hidden;
}
/* ---------- ANIMACIÓN DE FLOTAR GENÉRICA ---------- */
@keyframes flotar {
0% { transform: translateY(0); }
50% { transform: translateY(-22px); }
100% { transform: translateY(0); }
}
/* ---------- CUADRO SUPERIOR ---------- */
.mensaje-superior {
position: absolute;
top: 40px;
left: 50%;
transform: translateX(-50%);
padding: 20px;
width: 60%;
max-width: 400px;
text-align: center;
border-radius: 16px;
color: #000;
overflow: hidden;
background-color: transparent;
backdrop-filter: blur(2px);
}
.mensaje-superior::after {
content: '';
position: absolute;
inset: 0;
background-image: url('patasperrito.gif');
background-repeat: repeat;
background-size: 80px 80px;
filter: saturate(25) contrast(25) brightness(1);
opacity: 0.76;
z-index: 0;
}
.mensaje-superior::before {
content: '';
position: absolute;
inset: 0;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 16px;
z-index: 1;
}
.mensaje-superior h1,
.mensaje-superior p {
position: relative;
z-index: 2;
margin: 10px 0;
font-family: 'Lobster', cursive;
font-size: 1.5rem;
}
/* ---------- CUADRO CENTRAL ---------- */
.mensaje-central {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-image: url('patasperrito.png');
background-repeat: repeat;
background-size: 100px 100px;
padding: 30px;
width: 70%;
max-width: 500px;
text-align: center;
font-size: 1.5rem;
color: #000;
border-radius: 16px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
.mensaje-central::before {
content: '';
position: absolute;
inset: 0;
background-color: rgba(255, 255, 255, 0.7);
border-radius: 16px;
z-index: 1;
}
.mensaje-central p {
position: relative;
z-index: 2;
margin: 0;
}
/* ---------- ELEMENTOS EXTRA ---------- */
.gif-esquina {
position: absolute;
top: 540px;
right: 10px;
width: 220px;
z-index: 100;
}
.mariposa {
position: absolute;
top: 3px;
left: 500px;
width: 105px;
z-index: 3;
pointer-events: none;
}
/* ---------- BONBOM (esquina superior izquierda con texto) ---------- */
.bonbom-wrapper {
position: absolute;
top: 200px;
left: 150px;
display: flex;
align-items: center;
z-index: 4;
}
.bonbom-wrapper img { width: 90px; }
.bonbom-text {
margin-left: 8px;
font-family: 'Lobster', cursive;
font-size: 1.3rem;
color: #000;
text-shadow: 0 0 4px rgba(255, 255, 255, 0.85);
}
/* ---------- COQUITA (esquina inferior izquierda) ---------- */
.coquita {
position: absolute;
bottom: 20px;
left: 400px;
width: 140px;
z-index: 2;
pointer-events: none;
}
/* ---------- GUNTER (mirando a la derecha) ---------- */
.gunter {
position: absolute;
bottom: 20px;
right: 1370px;
width: 140px;
z-index: 2;
transform: scaleX(-1);
}
/* ---------- PEPPA PIG FLOTANDO Y CON BRILLO BLANCO ---------- */
.peppa {
position: absolute;
top: 30px;
right: 24px;
width: 160px;
z-index: 2;
animation: flotar 4.5s ease-in-out infinite;
filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9))
drop-shadow(0 0 16px rgba(255, 255, 255, 0.6));
pointer-events: none;
}
/* ---------- BRILLOS DE COLORES (sincronizados con Peppa) ---------- */
.brillos {
position: absolute;
top: 50px; /* Ajusta verticalmente para alinearse con Peppa */
right: 185px; /* Colocado a la izquierda de Peppa */
width: 130px;
z-index: 2;
pointer-events: none;
animation: flotar 4.5s ease-in-out infinite; /* Misma animación que Peppa */
}
/* ---------- CONTENEDOR DEL DISPENSADOR DE VINILOS (DERECHA CENTRO) ---------- */
.vinyl-container {
position: absolute;
top: 50%;
right: 240px;
transform: translateY(-50%);
width: 120px;
z-index: 3;
}
/* ---------- DISPENSADOR DE VINILOS ---------- */
#vinyl-gallery * { all: unset; }
#vinyl-gallery {
all: initial!important;
width: 100%!important;
height: 150px!important;
margin: 30px 0!important;
display: flex!important;
flex-direction: row!important;
position: relative!important;
margin-left: -6px!important;
}
#vinyl-gallery .vinyl {
all: unset!important;
perspective: 500px!important;
width: 12px!important;
transition: width 0.5s!important;
}
#vinyl-gallery .vinyl:hover { width: 100px!important; }
#vinyl-gallery img {
all: unset!important;
transition: transform 0.5s, width 0.5s, height 0.5s, margin-top 0.5s!important;
width: 100px!important;
height: 100px!important;
transform: rotateX(0deg) rotateY(25deg)!important;
transform-style: preserve-3d!important;
border-radius: 4px!important;
border: 2px solid rgba(0, 0, 0, 0.1)!important;
object-fit: cover!important;
}
#vinyl-gallery .vinyl:hover img {
transform: rotateX(0deg) rotateY(10deg)!important;
width: 108px!important;
height: 108px!important;
margin-top: -2px!important;
}
#vinyl-gallery .title {
color: #000;
display: block;
visibility: hidden;
position: absolute;
bottom: 0;
text-align: center;
width: 100%;
padding-left: 6px;
}
#vinyl-gallery .vinyl:nth-child(n):hover + .title { visibility: visible; }
</style>
</head>
<body>
<!-- Bonbom + mensaje -->
<div class="bonbom-wrapper">
<img src="bonbom.gif" alt="bonbom" />
<span class="bonbom-text">pa ti bombon</span>
</div>
<!-- Perro salchicha animado -->
<img src="perrosalchicha.gif" alt="perro salchicha" class="gif-esquina" />
<!-- Mariposa -->
<img src="mariposacolombiana_sin_fondo.png" alt="mariposa" class="mariposa" />
<!-- Coquita (esquina inferior izquierda) -->
<img src="coquita.gif" alt="coquita" class="coquita" />
<!-- Gunter reguetonero -->
<img src="gunter.png" alt="Gunter reguetonero" class="gunter" />
<!-- Peppa Pig hada flotando con brillo blanco -->
<img src="peppapig_sin_fondo.gif" alt="Peppa Pig hada" class="peppa" />
<!-- Brillos de colores sincronizados con Peppa -->
<img src="brilloscolores.gif" alt="brillos de colores" class="brillos" />
<!-- CONTENEDOR DISPENSADOR DE VINILOS -->
<div class="vinyl-container">
<div id="vinyl-gallery">
<div class="vinyl"><img src="albumcover" /></div><div class="title">Artist - Album</div>
<div class="vinyl"><img src="ALBUMCOVERSOURCE" /></div><div class="title">Artist - Album</div>
<div class="vinyl"><img src="ALBUMCOVERSOURCECODE" /></div><div class="title">Artist - Album</div>
<div class="vinyl"><img src="albumcover" /></div><div class="title">Artist - Album</div>
<div class="vinyl"><img src="ALBUMCOVERSOURCE" /></div><div class="title">Artist - Album</div>
<div class="vinyl"><img src="ALBUMCOVERSOURCECODE" /></div><div class="title">Artist - Album</div>
<!-- ... resto de discos ... -->
</div>
</div>
<!-- Cuadro de saludo -->
<div class="mensaje-superior">
<h1>¡Hola Camilo!</h1>
<p>Esta es tu página personalizada. 🎉</p>
<p>¡Feliz cumpleaños y que tengas un día maravilloso!</p>
</div>
<!-- Cuadro central -->
<div class="mensaje-central">
<p>Buenas, esto es una prueba de texto</p>
</div>
</body>
</html>