/* Reset some default styles */
body, h1 {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Style the body */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f3f3f3;
    color: #333;
}

/* Style the container */
.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Style the heading */
h1 {
    font-size: 2em;
    color: #007acc;