x
<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Sobre de Amor</title> <style> body{ display:flex; justify-content:center; align-items:center; height:100vh; background:#f8c8dc; font-family: Arial, sans-serif; overflow:hidden; } /* CONTENEDOR */ .container{ position:relative; cursor:pointer; } /* SOBRE */ .envelope{ position:relative; width:300px; height:200px; background:#f5e6cc; border-radius:5px; overflow:hidden; box-shadow:0 10px 25px rgba(0,0,0,0.2); } /* SOLAPA */ .flap{ position:absolute; width:100%; height:100%; background:#f0d9b5; clip-path: polygon(0 0, 100% 0, 50% 60%); transform-origin:top; transition:transform 1s ease; } /* CARTA */ .letter{ position:absolute; width:90%; height:90%; background:white; top:5%; left:...