/* Apply basic styles for the body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Light gray background for contrast */
}

/* Center and style the main content */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
}

/* Style the H1 */
h1 {
    color: #007bff; /* Bright blue color */
    font-size: 3rem; /* Larger font size */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    margin: 0;
    text-transform: uppercase; /* Make text uppercase */
}