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

body {
    font-family: Arial, sans-serif;
    color: white;
    overflow: hidden;
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('background.jpeg'); /* Replace with your image */
    background-size:contain;
    background-position: center bottom;
    background-repeat:no-repeat;
    background-color: rgb(213, 201, 171);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(200, 100, 0, 0.1);
}

.content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

h1, h2 {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

h1 {
    font-size: 5rem;
    letter-spacing: -5px;
    line-height: 80%;
    margin: 2rem 0;
}

h2 {
    font-size: 2rem;
    letter-spacing: -2px;
}

sup {
    font-size: 67%;
}

#date {
    font-size: 242%;
    margin-top: 1rem;
}

@media (width <= 500px) {

    h1 {
        margin-left: 3rem;
        margin-right: 3rem;
    }

}