body {
    margin: 0;
    padding: 0;
    font-family: 'Garamond', 'Times New Roman', serif;
    background: linear-gradient(to bottom, #a1c4fd 0%, #c2e9fb 100%); /* Light blue gradient */
    color: #ffffff; /* White text for contrast and snowy feel */
    overflow: hidden; /* Hide scrollbars as content is centered and snow is full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

#snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place canvas behind content */
}

.container {
    position: relative; /* Ensure content is above canvas */
    z-index: 1;
    background-color: rgba(0, 0, 50, 0.3); /* Darker, slightly transparent background for text box */
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    max-width: 600px;
    margin: 20px;
}

.confession h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #e0f7fa; /* Very light cyan for headings */
    font-weight: normal;
}

.confession p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
    color: #f0f8ff; /* AliceBlue, a very light, soft blueish white */
}

.confession .signature {
    font-size: 1.3em;
    margin-top: 30px;
    text-align: right;
    font-style: italic;
    color: #e0f7fa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 20px 30px;
        margin: 15px;
    }
    .confession h1 {
        font-size: 2em;
    }
    .confession p {
        font-size: 1.1em;
    }
    .confession .signature {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 20px;
    }
    .confession h1 {
        font-size: 1.8em;
    }
    .confession p {
        font-size: 1em;
    }
    .confession .signature {
        font-size: 1.1em;
    }
}
