body {
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0 10px; /* Add padding to prevent content from touching the edges */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

h1 {
    color: white;
    text-align: center;
    font-family: sans-serif;
    font-weight: bolder;
    font-size: 5em; /* Reduce font size for better fit on smaller screens */
    margin: 0; /* Remove default margin */
    word-wrap: break-word; /* Ensure long words break to the next line */
}

a {
    color: white;
    text-decoration: none;
    font-family: sans-serif; /* Same font as h1 */
    font-size: 1.5em; /* Reduce font size for better fit on smaller screens */
    font-weight: 400; /* Same weight as h1 */
    margin: 0 10px; /* Space between links */
}

.links {
    display: flex;
    justify-content: center;
    margin-top: 10px; /* Space between h1 and links */
    flex-wrap: wrap; /* Allow links to wrap to the next line if needed */
}
