/* styles.css */
body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Set the body height to full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-container {
    text-align: center;
}

.big-heading {
    font-size: 3rem; /* Adjust the font size as needed */
    /* Add any other styles you want for the big heading */
}
