/*

Der Banner ganz oben bei der Website.
*/
body {
    background-image: url("../Bilder/compressed/teslaBannerCompressed.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: black;
    max-width: 100%;
    font-family: Lato, sans-serif;
    margin: 0;
}

/*
Die Navigationsleiste.
 */
header {
    background-color: black;
    height: 50px;
    width: 100%;
    position: relative;
}

header button {
    background-color: black;
    position: absolute;
    right: 1px;
    top: 3px;
    border: 1px solid black;


}

header .suchFeld {
    margin-top: 1px;
}

#nav {
    height: 5vh;
    overflow: hidden;
    width: auto;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 1px;
    list-style: none;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

#nav a {
    color: #9b9b9b;
    padding: 14px 15px;
    text-decoration: none;
    font-size: 17px;
}

#nav a:hover {
    color: #696969;
}

#nav a.active {
    color: #ffffff;
}

#nav .icon {
    display: none;
}

.suchFeld input[type=text] {
    position: absolute;
    top: 10px;
    right: 50px;
    padding: 6px;
    border: none;
    font-size: 17px;
}

/*
Haupttext
 */
.hauptText {
    color: white;
    position: relative;
    top: 400px;
    width: 100%;
    height: fit-content;
    font-size: 20px;
    background-color: black;
}

.hauptText section {
    width: 80%;
    padding-left: 20px;
}

.hauptText h2 {
    color: white;

}

form h2 {
    text-decoration: underline;
    display: flex;
    justify-content: center;

}

.allesFormular {
    background-color: black;
    position: relative;
    top: 380px;
    width: 100%;
}

.kontaktFormular {
    position: relative;
    width: 750px;
    height: fit-content;
    background-color: #121212;
    color: white;
    left: 50%;
    transform: translate(-50%);
    top: 50px;
}

#geschlecht {
    margin-left: 10px;
}

.kontaktFormular label {
    margin-left: 10px;
}

.kontaktFormular h1 {
    font-size: 1.2em;
    padding-top: 5px;
    margin-left: -10px;
}

.kontaktFormular #nachrichtLabel {
    position: relative;
    top: -90px;

}

.kontaktFormular textarea {
    width: 300px;
    height: 100px;
    position: relative;
    top: 90px;
}

.kontaktFormular #sendenButton {
    position: relative;
    left: 90%;
    margin: 10px;
}

/*
Der Footer
 */
footer {
    position: relative;
    bottom: -500px;
    width: 60vw;
    left: 50%;
    right: -50%;
    transform: translate(-50%);
}

footer ul {
    list-style-type: none;
    display: flex;
    justify-content: center;

}

footer ul li {
    padding-left: 10px;
    padding-right: 10px;
    height: 50px;
    line-height: 50px;
    color: white;
    background-color: gray;
}

footer a:link, a:visited, a:active {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: red;
}
