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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #eb4f34; /* Updated orange background */
    font-family: Arial, sans-serif;
    color: #537ced;
}

.container h1 {
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
}

