* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("imagesHintergrundwebsite.png");
    background-size: cover;
    /* Bild füllt den ganzen Bildschirm */
    background-position: center;
    /* Bild bleibt mittig */
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Bild bleibt beim Scrollen stehen */
}

header {
    font-size: 30px;
    text-align: center;
    margin-bottom: 150px;
    padding: 20px;
    background: #000000;
    color: rgb(10, 18, 91);
    /*oberer teil der anordnung*/
}


/*übershrift*/

header h1 {
    color: rgb(10, 18, 91);
    font-size: 42px;
    margin-bottom: 20px;
    background: #000000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #374151;
    font-weight: bold;
    transition: .0s;
}

nav a:hover {
    color: #1a3eb5;
}


/*
main {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    text-align: center
}*/

main h2 {
    color: #000000;
    font-size: 42px;
    margin-bottom: 20px;
}

main h3 {
    color: #000000;
    font-size: 42px;
    margin-bottom: 20px;
}

main h4 {
    color: #000000;
    font-size: 42px;
    margin-bottom: 20px;
}

main h5 {
    color: #000000;
    font-size: 42px;
    margin-bottom: 20px;
}

main h6 {
    color: #000000;
    margin-bottom: 20px;
    font-size: 42px;
}

button {
    background: #000000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 42px;
    transition: .0s;
}


/*button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}*/


/*der graue balken in dem der name steht */

footer p {
    font-size: 25px;
    text-align: center;
    margin-top: 500px;
    padding: 20px;
    background: #000000;
    color: rgb(10, 18, 91);
}