body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin: 0;
    color: #333;
}

.date {
    font-size: 1.5rem;
    margin: 10px 0 0;
    color: #555;
}

.location {
    font-size: 1.5rem;
    margin: 5px 0 0;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .date, .location {
        font-size: 1.2rem;
    }
}
