body {

    background-image: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb");

    background-size: cover;

    background-attachment: fixed;

    font-family: "Trebuchet MS", sans-serif;

    color: #4e4a46;

    margin: 0;

    padding: 60px;

}



/* Caja principal */

.container {

    max-width: 750px;

    margin: auto;

    background: rgba(255,255,255,0.82);

    padding: 40px;

    border-radius: 10px;

}



/* Título */

h1 {

    font-weight: normal;

    letter-spacing: 2px;

    border-bottom: 1px solid rgba(0,0,0,0.2);

    padding-bottom: 10px;

}



/* Texto */

p {

    line-height: 1.8;

    font-size: 18px;

}



/* Menú */

.menu {

    margin-top: 30px;

}



/* Links */

.menu a {

    text-decoration: none;

    color: #5d6c8c;

    margin-right: 20px;

    transition: 0.2s;

}

body{
    background-color:#9ecfe8;
    font-family:Georgia, serif;
    margin:0;
    padding:40px;
}

.pensamientos{
    max-width:700px;
    margin:auto;
}

.entrada{
    background:#fffaf4;
    padding:25px;
    border-radius:18px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    margin-bottom:30px;
}

.fecha{
    font-size:14px;
    color:#8b5e3c;
    margin-bottom:20px;
    letter-spacing:1px;
}

.texto{
    font-size:17px;
    line-height:1.8;
    color:#4a3b32;
}

body{
    background-color:#9ecfe8;
    background-image:
    radial-gradient(white 1px, transparent 1px);

    background-size:40px 40px;

    font-family:Georgia, serif;
    margin:0;
    padding:40px;
}

.pensamientos{
    max-width:750px;
    margin:auto;
}

.entrada{
    background:#f4e7d3;
    border:2px solid #8b5e3c;

    padding:28px;
    border-radius:20px;

    box-shadow:0 6px 15px rgba(0,0,0,0.15);

    margin-bottom:35px;
}

.fecha{
    color:#6b4328;

    font-size:14px;
    letter-spacing:2px;

    margin-bottom:18px;

    border-bottom:1px dashed #8b5e3c;
    padding-bottom:10px;
}

.texto{
    color:#3b2b22;

    font-size:18px;
    line-height:1.9;
}

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Pensamientos</title>

<style>

/* 🌤️ FONDO GENERAL */
body{
    margin:0;
    padding:0;
    font-family: Georgia, serif;
    color:#2f2a25;

    background-image: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* 🌫️ CAPA PARA LEER BIEN */
body::before{
    content:"";
    position:fixed;
    inset:0;
    background: rgba(255,255,255,0.45);
    pointer-events:none;
}

/* 📦 CONTENEDOR */
.pensamientos{
    max-width:750px;
    margin:auto;
    padding:40px;
    position:relative;
}

/* 🧾 TARJETAS BASE */
.entrada{
    border-radius:18px;
    padding:28px;
    margin-bottom:30px;
    box-shadow:0 6px 15px rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.80);
}

/* 📅 FECHA */
.fecha{
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:15px;
    border-bottom:1px dashed;
    padding-bottom:10px;
    color:#6b4328;
}

/* ✍️ TEXTO */
.texto{
    font-size:18px;
    line-height:1.9;
}

/* 🌿 ATMÓSFERA: CALMA */
.calma{
    background: rgba(235, 245, 240, 0.88);
    border: 1px solid #7aa89a;
}

.calma .fecha{
    color:#4e6b4e;
}

/* 🌾 ATMÓSFERA: NOSTALGIA */
.nostalgia{
    background: rgba(244, 231, 211, 0.88);
    border: 1px solid #a07a55;
}

.nostalgia .fecha{
    color:#6b4328;
}

/* 🌙 ATMÓSFERA: NOCHE */
.noche{
    background: rgba(35, 40, 55, 0.85);
    color:#e8e3da;
    border: 1px solid #4b5566;
}

.noche .fecha{
    color:#9aa4b2;
    border-bottom:1px dashed #4b5566;
}

</style>
</head>

<body>

<section class="pensamientos">

    <article class="entrada calma">
        <p class="fecha">11 junio 2026</p>
        <p class="texto">
            A veces no me doy cuenta de que lo que hago no es suficiente para otros
            hasta que ya reaccionaron. Y cuando lo veo después, entiendo por qué.
        </p>
    </article>

    <article class="entrada nostalgia">
        <p class="fecha">10 junio 2026</p>
        <p class="texto">
            Hay cosas que intento hacer bien, pero se sienten distintas dependiendo de quién las recibe.
        </p>
    </article>

    <article class="entrada noche">
        <p class="fecha">09 junio 2026</p>
        <p class="texto">
            No siempre sé si estoy siendo suficiente o solo estoy llegando tarde a todo.
        </p>
    </article>

</section>

</body>
</html>

/* Hover */

.menu a:hover {

    letter-spacing: 2px;

}