body, html {
    height: 100%; /* Ensures the body and html elements take up the full height of the viewport */
    margin: 0;
    display: flex; /* Makes the body a flex container */
    justify-content: center; /* Centers content horizontally within the body */
    align-items: center; /* Centers content vertically within the body */
    background-color: black;;
}

.center-container {
    padding: 20px;
    text-align: center; /* Ensures the text itself is centered within its own container */
}

p {
    margin: 0; /* Removes default paragraph margin */
    font-family: "Playwrite NZ Basic", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: white;
}
