html {
    background-color: whitesmoke;
}

body {
    font-family: 'EB Garamond', serif;
    background: #f5f1e8;
    color: #333;
    max-width: 600px;
    margin: 4rem auto;
    padding: 3rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
    position: relative;
    text-align: justify;
    font-weight: bold;
    max-height: 100%;
}

h2 {
    text-align: center;
}

.firma {
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 10px;
    left: 150px;

}

p:first-of-type::first-letter {
    font-size: 3em;
    float: left;
    line-height: 0.5;
    padding-right: 0.1em;
    font-weight: bold;
}

.firmadoAutora {
    right: 15rem;
    bottom: 3.1rem;
    position: absolute;

}

.numPagina {
    position: absolute;
    right: 3rem;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: black;
    transition: 1s ease;
}

.encabezado {
    text-align: center;
    font-size: 0.85em;
    color: #999;
    margin-bottom: 2rem;
    font-family: 'EB Garamond', serif;
    font-style: italic;
}

button {
    position: sticky;
    top: 20px;
    right: 20px;
    background-color: #f5f1e8;
    color: #333;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-family: 'EB Garamond';
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 150px;
}


@media (max-width: 600px) {
    body {
        padding: 2rem 1.2rem;
    }


    .pagina {
        font-size: 1rem;
        line-height: 1.6;
    }

    .firmadoAutora {
        left: 1.2rem;
        bottom: 0px;
    }

    .firma img {
        width: 140px;
    }
}