/* Reset some default styles */
body, h1, p, a, div {
    margin: 0;
    padding: 0;
}

/* Set background color to black and text color to white */
body {
    background-color: black;
    color: white;
}

/* Center content in a specific element, for example, a div with a class of "center-container" */
.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack content vertically */
    height: 100vh; /* Adjust as needed */
}

/* Style the centered text */
.centered-text {
    text-align: center;
    font-size: 1.5em; /* Adjust font size as needed */
    /* Add any other styles you want for the centered text */
}
