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

body{

background-image:url("images/backgrounds/room.jpg");

background-size:cover;

background-position:center;

background-repeat:no-repeat;

background-attachment:fixed;

height:100vh;

font-family:Georgia,serif;

overflow:hidden;

}

.overlay{

width:100%;

height:100%;

display:flex;

justify-content:center;

align-items:center;

background:rgba(50,35,20,.25);

backdrop-filter:blur(3px);

}

.paper{

width:430px;

background:#f7efe0;

padding:40px;

border-radius:20px;

transform:rotate(-2deg);

box-shadow:0 15px 45px rgba(0,0,0,.4);

border:2px solid #c7a87d;

}

h1{

font-size:42px;

margin-bottom:20px;

color:#5e341f;

}

p{

font-size:18px;

line-height:1.7;

margin-bottom:30px;

color:#4b4036;

}

button{

padding:14px 30px;

font-size:18px;

background:#9b6039;

color:white;

border:none;

border-radius:10px;

cursor:pointer;

transition:.3s;

}

button:hover{

background:#7f4925;

transform:scale(1.05);

}