/* Set the background to black and text to white */
body {
    background-color: black;
    color: rgb(207, 207, 207);
    font-family: 'Cabin', sans-serif;
    margin: 0;
    padding: 0;
}

/* Style the menu */
nav {
    background-color: #000000;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
}

nav ul li a:hover {
    background-color: #000000;
}

/* Center the text */
.center-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh; /* Adjust this to center vertically */
    font-size: 3em; /* Make the text bigger */
}