*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#7a5b40;
    background-image:
    radial-gradient(circle at 20% 30%,rgba(255,255,255,.05),transparent 30%),
    radial-gradient(circle at 80% 70%,rgba(0,0,0,.08),transparent 35%);
    font-family:'Special Elite', monospace;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:60px;
}

/* Mesa */
.mesa{
    width:100%;
    display:flex;
    justify-content:center;
}

/* Papel */

.folha{
    width:850px;
    min-height:1100px;
    background:#fcfcf8;
    padding:
        90px
        85px
        90px
        85px;
    position:relative;
    box-shadow:
        0 15px 40px rgba(0,0,0,.35);
    border:1px solid #ddd;
    background-image:
        linear-gradient(
            rgba(255,255,255,.45),
            rgba(245,245,240,.55)
        ),
        radial-gradient(
            rgba(0,0,0,.025) 1px,
            transparent 1px
        );
    background-size:
        auto,
        6px 6px;
}

/* Título */

h1{
    text-align:left;
    letter-spacing:4px;
    margin-bottom:5px;
    font-size:24px;
    font-weight:normal;
}

/* Texto */

p{
    font-size:14px;
    line-height:2.0;
    margin-bottom:15px;
    text-align:left;
    color:#202020;
    letter-spacing:.4px;
}

footer{
    font-size:12px;
    line-height:1.0;
    margin-bottom:15px;
    text-align:center;
    color:#202020;
    letter-spacing:.2px;
}

footer2{
    font-size:12px;
    line-height:2.0;
    margin-bottom:30px;
    text-align:justify;
    color:#202020;
    letter-spacing:.2px;
}


/* Área da fotografia */

.foto_OLD{
    width:220px;
    height:270px;
    position:absolute;
    right:80px;
    top:60px;
    background:white;
    padding:10px;
    transform:rotate(2deg);
    box-shadow:
        0 10px 25px rgba(0,0,0,.25);
}

.foto{
    float:right;
    width:220px;
    height:270px;
    margin:
        0
        0
        35px
        45px;
    background:white;
    padding:10px;
    transform:rotate(2deg);
    box-shadow:
        0 10px 25px rgba(0,0,0,.25);
    position:relative;
}
.foto img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Clipes */

.clip{
    width:26px;
    height:55px;
    border:4px solid #888;
    border-bottom:none;
    border-radius:15px;
    position:absolute;
    background:transparent;
}

.clip:after{
    content:"";
    position:absolute;
    left:-4px;
    top:10px;
    width:26px;
    height:42px;
    border:4px solid #999;
    border-bottom:none;
    border-radius:15px;
}

.clip-esquerdo{
    left:22px;
    top:-25px;
    transform:rotate(-8deg);
}

.clip-direito{
    right:22px;
    top:-20px;
    transform:rotate(10deg);
}

/* Pequenas imperfeições */

.folha::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 30% 20%,rgba(0,0,0,.03),transparent 20%),
        radial-gradient(circle at 70% 70%,rgba(0,0,0,.025),transparent 18%);
    pointer-events:none;
}

.folha::after{
    content:"";
    position:absolute;
    inset:0;
    box-shadow:
        inset 0 0 90px rgba(0,0,0,.05);
    pointer-events:none;
}