body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5dc; /* Lined paper color */
    background-image:
        linear-gradient(to right, #ccc 1px, transparent 1px),
        linear-gradient(to bottom, #ccc 1px, transparent 1px);
    background-size: 20px 20px;
    background-repeat: repeat;
    position: relative;
    z-index: 1;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><filter id="crinkle"><feTurbulence type="fractalNoise" baseFrequency="0.1" numOctaves="3" result="noise"/><feDisplacementMap in="SourceGraphic" in2="noise" scale="20"/></filter><rect width="100%" height="100%" fill="none" style="filter:url(#crinkle);"/></svg>');
    background-repeat: repeat;
    opacity: 0.8;
    z-index: -1;
}

.container {
    text-align: center;
    padding: 20px;
    /* Change this line to make the background transparent */
    background-color: transparent;
    border-radius: 10px;
}

h1 {
    font-size: 3em;
    color: #000080;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
    letter-spacing: 2px;
    font-weight: bold;
}