*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:url("background.jpeg") center center/cover no-repeat fixed;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px 20px;

    font-family:"Poppins",sans-serif;

    position:relative;
}

.overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.50);
}

.container{

    position:relative;

    width:min(760px,95%);

    padding:60px;

    border-radius:24px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(14px);

    color:white;

    animation:fade 1.6s ease;

    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

h1{

    text-align:center;

    font-family:"Cormorant Garamond",serif;

    font-size:46px;

    margin-bottom:20px;

    font-weight:600;

}

.line{

    width:90px;
    height:2px;

    background:white;

    margin:0 auto 40px;

    opacity:.8;
}

p{

    line-height:2;

    font-size:18px;

    margin-bottom:24px;

    font-weight:300;

    text-align:justify;
}

blockquote{

    margin:45px 0;

    padding:25px 30px;

    border-left:3px solid rgba(255,255,255,.7);

    background:rgba(255,255,255,.08);

    font-family:"Cormorant Garamond",serif;

    font-size:27px;

    font-style:italic;

    line-height:1.6;

    color:#fff;
}

.merci{

    text-align:center;

    margin-top:35px;

    font-size:20px;
}

.highlight{

    text-align:center;

    margin-top:20px;

    font-size:30px;

    font-family:"Cormorant Garamond",serif;

    font-style:italic;
}

.hand-icon{

    display:inline-block;

    margin-left:10px;

    font-style:normal;

}

.signature{

    display:block;

    margin-top:45px;

    text-align:right;

    font-size:20px;

    opacity:.85;

    letter-spacing:2px;
}

@keyframes fade{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@media(max-width:768px){

    .container{

        padding:35px;

    }

    h1{

        font-size:34px;

    }

    p{

        font-size:16px;

        line-height:1.9;

    }

    blockquote{

        font-size:22px;

        padding:20px;

    }

    .highlight{

        font-size:25px;

    }

}