/* styles.css */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Light gray background for contrast */
}

.center-text {
    font-size: 100px;
    font-weight: bold;
    color: red;
    text-shadow: 2px 2px 5px black;
}
