body {
    margin: 50; /* Reset the default margin */
    padding: 100; /* Reset the default padding */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh; /* This will center the container vertically as well */
}

.container {
    /* Set the desired width of your content */
    min-height: 100px;
    max-height: 300px;
    min-width: 600px;
    max-width: 1000px;
    /* Add any other styles you want for the container */
}


/* Target all elements and set the color to white */

h1,
h2,
h3,
h4,
h5,
h6,
p,
div
    /* Add other elements you want to change here */
{
    color: white;
}




ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    display: inline;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

a:hover {
    color: #FFA500FF; /* Farbe ändern, wenn der Benutzer mit der Maus über einen Link geht */
}









