@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: rgb(30, 30, 30);
    min-height: 100vh;
    background-color: lightblue;
    min-width: 900px;
    line-height: 130%;
}

/*Alle H1 Überschriften im Body*/
body h1
{
    font-size: 30px;
   font-weight: normal;
   margin-top: 60px;
}

/*Logo mit Navigationsleiste*/
.logo {
    height: 75%;
    float: left;
    padding-left: 10px;
    padding-top: 8px;
}

.seitenkopf-spacer {
    content: "";
    height: 20px;
    width: 1px;
}

.seitenkopf {
    height: 70px;
    margin-bottom: 10px;
    position: sticky;
    background:#e0eeee;
    z-index: 1000;
    top: 0;
}

.seitenkopf-links {
    float: left;
    line-height: 70px;
    height: 70px;
}

.seitenkopf h1 {
    margin: 0;
    display: inline;
    margin-left: 25px;
    float: left;
    font-size: 35px;
    font-family:  'Roboto', sans-serif;
    font-weight: 500;
    color: rgb(30, 30, 30);
}

/*Alle Überschriften*/
h1 {
    text-align: center;
    font-size: 25px;
}

h2
{
    font-style: normal;
    font-weight: normal;
}

h3{
    font-weight: normal;
    font-size: 18px;
}

/*Grundeinstellung aller Fotos*/
img {
    max-height: 100%;
    max-width: 100%;
}

/*Webtexte, Glossar, Kontakt der Navigationsleiste*/
.nav-link {
    text-decoration: none;
    padding: 0 10px;
    display: inline-block;
    font-size: 23px;
    color: rgb(30, 30, 30);
}

.nav-link.active,
.nav-link:hover,
.nav-link:active {
    color: royalblue;
}

a {
    text-decoration: none;
    color: rgb(30, 30, 30);
}

a:hover
{
    color: royalblue;
}

.mainnav {
    float: right;
    text-align: center;
}

.mainnav ul {
    margin: 0;
}

.mainnav li {
    float: left;
    list-style-type: none;
    border-right: 2px solid lightgrey;
    line-height: 50px;
    margin-top: 10px;
}


.mainnav li:last-child {
    border-right: 0;
}

/*Grundeinstellungen für den Content*/
.content {
    width: 70%;
    position: relative;
    left: 15%;
    top: 0;
    color: rgb(30, 30, 30);
}

.content h1 {
    padding-bottom: 30px;
}

/*Landingpage Willkommenstext*/
.landingpage {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landingpage-welcome {
    width: 100%;
    text-align: center;
    font-size: larger;
    background-color: rgba(255, 255, 255, 0.6);
    min-width: 200px;
    color: rgb(30, 30, 30);
    height: 200px;
    padding: 8px;
    margin-top: 20px;
    border-radius: 10px;
    line-height: 130%;
}

/*Spoiler Bilder mit Titel und Text der Webtexte auf der Startseite und den Glossar-Unterseiten*/
.spoiler-images-row {
    width: 100%;
    padding-top: 25px;
    overflow: hidden;

}

.spoiler-images-col-left {
    padding-right: 6%;
}

.spoiler-images-col {
    width: 47%;
    float: left;
    overflow: hidden;
}

.spoiler-images-title {
    position: relative;
}

.spoiler-images-title img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.spoiler-images-title h2 {
    position: absolute;
    text-align: center;
    top: 80px;
    width: 100%;
    font-size: 40px;
    font-weight: bolder;
    color: rgb(30, 30, 30);
    background-color: rgba(255, 255, 255, 0.5);
    line-height: 130%;
}

.spoiler-images-text {
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 10px 10px;
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 7px;
}

.spoiler-images-text a {
    font-weight: bolder;
    color: rgb(30, 30, 30);
}

/*Glossar Bilder mit Titel*/
.glossar-images-row {
    width: 100%;
    padding-top: 25px;
    overflow: hidden;

}

.glossar-images-col-left {
    padding-right: 6%;
}

.glossar-images-col {
    width: 47%;
    float: left;
    overflow: hidden;
}

.glossar-images-title {
    position: relative;
}

.glossar-images-title img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    min-width: 100%;
}

.glossar-images-title h2 {
    position: absolute;
    text-align: center;
    top: 80px;
    width: 100%;
    font-size: 40px;
    color: rgb(30, 30, 30);
    background-color: rgba(255, 255, 255, 0.5);
    line-height: 130%;
}

/*Spoiler Bilder der Webtexte von Übersichtsseite 3-Spaltig*/
.spoiler-images-col-left-3 {
    padding-right: 5%;
}

.spoiler-images-col-3 {
    width: 30%;
    float: left;
    overflow: hidden;
}

.spoiler-images-title-3 {
    position: relative;
}

.spoiler-images-title-3 img {
    height: 100px;
    min-width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.spoiler-images-title-3 h2 {
    position: absolute;
    text-align: center;
    top: 13px;
    width: 100%;
    color: rgb(30, 30, 30);
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 25px;
    line-height: 130%;
}

/*Einzele Webtexte*/
.Webtexte{
    margin-top: 100px;
    width: 70%;
    padding-left: 15%;
}

.webtext-image{
    border-radius: 10px;
    width: 40%;
    margin-top: 5px;
    top: 0;
}

.webtext-image-right{
	float: right;
	margin-left: 10px;
}

.webtext-image-left{
	float: left;
	margin-right: 10px;
}

.webtext-image2{
    border-radius: 10px;
    width: 30%;
    float: left;
    margin-right: 10px;
    margin-top: 5px;
    top: 0;
}

/*Kontakt*/
.Kontaktformular {
    height: 700px;
    box-sizing: border-box;
    width: 100%;
    min-width: 800px;
}

.Kontaktformular label {
    display: block;
}

.Form-Box {
    padding: 10px;
    margin: 0 0 0 8px;
}

.Form-Box1 {
    padding: 10px;
    margin: 0 0 0 8px;
    display: inline-block;
    width: 25%;
}

.Form-Box2 {
    padding: 10px;
    margin: 0 0 0 8px;
    display: inline-block;
    width: 25%;
}

.Form-Box3 {
    padding: 10px;
    margin: 0 0 0 8px;
    display: inline-block;
    width: 25%;
}

label{
    padding-bottom: 0px;
}

.Form-Box button {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    border: 0;
    border-radius: 3px;
    padding: 8px 16px;
    margin: 0 8px 0 0;
    cursor: pointer;
}

.Form-Box>button[type="submit"] {
    color: white;
    background-color: royalblue;
}

.Form-Box>button[type="reset"] {
    color: royalblue;
    background-color: #e0eeee;
}

.Form-Box>button[type="submit"]:hover {
    color: white;
    background-color: lightslategray;
}

.Form-Box>button[type="reset"]:hover {
    color: white;
    background-color: lightslategray;
}



#Anrede {
    border: 0;
    border-radius: 3px;
    width: 50%;
}

#Vorname {
    border: 0;
    border-radius: 3px;
    width: 80%;
}

#Nachname {
    border: 0;
    border-radius: 3px;
    width: 80%;
}

#Email {
    border: 0;
    border-radius: 3px;
    width: 80%;
}

#Telefon {
    border: 0;
    border-radius: 3px;
    width: 80%;
}

#Betreff {
    border: 0;
    border-radius: 3px;
    width: 23.7%;
}

input {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    padding: 8px 16px;
    margin: 0 0 6px 0;
    width: 100%;
}

select {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    margin: 0 0 6px 0 ;
    width: 100%;
}

textarea {
    width: 52.4%;
    height: 150px;
    padding: 8px 16px;
    box-sizing: border-box;
    resize: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    border-width: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    font-style: italic;
    font-size: 13px;
    text-align: center;
    
}

/*Social Media Kontakt*/
#socialmedia {
    height: 100px;
    width: auto;
    float: right;
    margin-top: -20px;
}

.media-kontakt {
    float: right;

}

/*Footer*/
footer {

    background-color: #e0eeee;
    color: rgb(30, 30, 30);
    text-align: center;
    height: 150px;
    margin-top: 50px;

}

.footer-logo {
    height: 40px;
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

.footer-link {
    color: rgb(30, 30, 30);
}

.footer-link:hover {
    color: royalblue;
}

/*Error-Seite*/
.error
{
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    color: royalblue;
}

.error h1
{
    font-size: 80px;
}

.error-text
{
    text-align: center;
}

#backtohome{
    color: white;
    background-color: royalblue;
    border-radius: 3px;
    cursor: pointer;
    border-width: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    padding: 5px;
}