/*

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;
    background-position-y: 60px;
    width: fit-content;
    height: auto;
    font-family: Lato, sans-serif;
    margin-right: -5px;
    margin-left: 0;
    margin-top: 0;

}

/*
Die Navigationsleiste.
 */
header {
    background-color: black;
    height: 100px;
    max-width: 100%;
}

header button {
    background-color: black;
    border: 1px solid black;
}

header .suchFeld {
    margin-top: 1px;
}

#nav {
    overflow: hidden;
    width: auto;
    display: flex;
    padding: 1px;
    list-style: none;
    position: relative;
    top: 10px;

}

#nav a {
    color: #9b9b9b;
    padding: 14px 15px;
    text-decoration: none;
    font-size: 25px;

}

#nav a:hover {
    color: #696969;
}

#nav a.active {
    color: #ffffff;
}

.suchFeld input[type=text] {
    padding: 6px;
    border: none;
    position: relative;
    top: 15px;
    font-size: 2em;
    width: 200px;
}


/*
Haupttext
 */
.hauptText{
    color: white;
    position: relative;
    top: 400px;
    width: 100%;
    height: fit-content;
    font-size: 20px;
    background-color: black;
    padding-left: 10px;
}
.hauptText section{
    width: 80%;
}
.hauptText h2{
    color: white;

}

form h2 {
    text-decoration: underline;
    display: flex;
    justify-content: center;

}



.kontaktFormular {
    position: relative;
    width: 750px;
    height: fit-content;
    background-color: #121212;
    color: white;
    left: 50%;
    transform: translate(-50%);
    top: 450px;

}

.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;

}

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;
}
