/* 1. The Background (The Desk) */
body {
    background-image: url('art.jpg');
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden; /* No scrolling! */
}
.container {
    background-color: #f4e4bc;
    background-image: url("paper-texture.jpg"); /* Add this! */
    background-blend-mode: multiply; /* Blends the color and texture together */
}
/* 2. The Floating Island (The Paper) */
.container {
    background-color: #f4e4bc; /* Classic "Old Paper" Sepia */
    padding: 50px;
    width: 60%;
    max-width: 500px;
    text-align: center;
    
    /* This makes it look "Floating" */
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    
    /* This makes the edges look handmade/uneven */
    border-radius: 2px;
    border: 1px solid #d2b48c;
    
    /* The Font */
    font-family: "Times New Roman", serif;
    color: #3e2f1c;
}

/* 3. The 1800s Typography */
h1 {
    border-bottom: 2px double #3e2f1c;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
