Untitled
1 hour ago in Plain Text
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Carta Art Déco</title>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Raleway:wght@300;600&display=swap" rel="stylesheet">
<style>
:root{
--bg:#f6efe9;
--card:#fffdf9;
--gold:#c59b45;
--accent:#2b4650;
--muted:#6b6360;
--border:rgba(197,155,69,0.15);
}
*{box-sizing:border-box}
body{
margin:0;
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
font-family: 'Raleway', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
background: radial-gradient(circle at 10% 10%, rgba(197,155,69,0.06), transparent 20%), linear-gradient(180deg,var(--bg),#fff);
padding:3rem;
color:var(--accent);
}
.frame{
width:100%;
max-width:820px;
background:var(--card);
border-radius:12px;
padding:2.4rem;
box-shadow: 0 18px 50px rgba(43,70,80,0.08);
border:1px solid var(--border);
position:relative;
overflow:hidden;
}
/* Art Deco header */
.header{
display:flex;
align-items:center;
gap:1rem;
margin-bottom:1.2rem;
}
.mark{
width:86px;height:86px;border-radius:8px;display:grid;place-items:center;
background:linear-gradient(180deg, rgba(197,155,69,0.12), rgba(197,155,69,0.06));
border:2px solid rgba(197,155,69,0.18);
box-shadow: 0 8px 24px rgba(43,70,80,0.04) inset;
}
.sunburst{
width:64px;height:64px;background:conic-gradient(from 180deg at 50% 50%, rgba(197,155,69,0.85) 0 15deg, rgba(197,155,69,0.35) 15deg 30deg, rgba(197,155,69,0.12) 30deg 360deg);
border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-family:'Cinzel',serif;font-size:16px;
transform:rotate(-20deg);
}
.title{
font-family:'Cinzel', serif;
</html>