/*
CSS-Syntax:

selector {
    property: value(s);
}


1) TAG Selectors -> body, header, h1, p ...
2) CLASS Selectors -> .active, .important, .class-xyz ...

*/



.cont-flex {
    background-color: #515f33;


}

.cont-flex .item {
    display: flex;
    background-color: #d1de97;
    color: black;


}


.cont-inlineblock .item {
    display: inline-block;
}

.cont-inline div {
    display: inline;

}

.cont-inline .item {
    display: inline;
}

.keineahnung {
    font-size: 100px;
    color: blue;
    background-color: black;
    padding: 40px;
    margin: 100px;
}

.container {
    background-color: #d1de97;
    padding: 1em;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
}

.container1 {
    padding: 1em;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 40vh;
    align-items: center;

}

.item {
    background-color: #515f33;
    color: white;
    padding: 0.5em;
    margin: 0.5em;

}

.pink {
    font-size: 2em;
    color: deeppink;
}

header {
    min-height: 35vh;
    background-image: url(../img/4653-Pano-+2500px-+2500px.jpg);
    background-repeat: no-repeat;
    background-color: #af2323;
    background-position: center;
    background-size: cover;
    margin: 0px;
    padding-top: 2.5em;
    padding-right: 5vw;
    padding-left: 5vw;
    padding-bottom: 2.5em;
    border-bottom: 1px solid #362006;
}


.colorscheme2 header {
    background-image: url(../img/pexels-pixabay-290538.jpg);
}

.colorscheme2 main {
    background-color: rgb(214, 132, 0);
}


.colorscheme3 header {
    background-image: url(../img/5736-Pano-Edit+BO-+2500px-+2500px.jpg);

}

.colorscheme4 header {
    background-image: url(../img/Timmelsjoch_Panorama_1.jpg);
}


h1 {
    font-size: 8vw;
    color: white;
    text-align: center;
    margin-top: 0em;
    margin-bottom: 0.5em;
    font-family: ivymode, sans-serif;
    font-weight: 700;
    font-style: normal;
}

footer {
    background-color: black;
    color: white;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 5vw;
    padding-left: 5vw
}

h2 {
    font-size: 2.5em;
    font-weight: 400;
    text-align: center;
    margin-top: 0em;
    font-family: benton-modern-display-extra, serif;
    font-weight: 500;
    font-style: normal;
}

main {
    background-color: rgb(242, 140, 0);

    padding-top: 10vh;
    padding-right: 1em;
    padding-bottom: 20vh;
    padding-left: 1em
}


.mainb {
    background-color: rgb(214, 132, 0);
}

.mainc {
    background-color: rgb(157, 115, 0);
}

.maind {
    background-color: #86860e;
}

nav a {
    display: inline-block;
    background-color: white;
    text-decoration-line: none;
    padding: 0.5em;
    text-align: center;
    border: 1px solid black;
    transition: 0.3s;
    font-family: nexa, sans-serif;
    font-weight: 400;
    font-style: normal;
}

nav a:hover {
    background-color: black;
    color: white;


}

.active {
    background-color: black;
    color: white;

}


a {
    color: black;
}

body {
    margin: 0px
}

article {
    background-color: white;
    padding-top: 2em;
    padding-bottom: 5em;
    margin-bottom: 15vh;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.52);
}

img {
    width: 100%;
    background-color: #fafafa
}

figcaption {
    text-align: center;
    margin-bottom: 2em;
    padding: 1.5em
}

figure {
    background-color: #fafafa;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 2em;
    margin-bottom: 2em;
}

p {
    padding-left: 1em;
    padding-right: 1em;
    max-width: 75ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
    margin-top: 2em;
    font-family: nexa, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6em;

}

.important {
    background-color: white;
    color: black;
    border-top: solid black 3px;
    border-bottom: solid black 3px;
    padding: 1em;
    font-size: 1.5em;
    text-align: center;
    max-width: none;
    padding-top: 2em;
    padding-bottom: 2em;
    padding-left: 3em;
    padding-right: 3em;


}

ul {
    list-style: none;
    margin-top: 2em;
    padding-left: 0;
    max-width: 75ch;
    margin-left: auto;
    margin-right: auto;
}

li {

    border-top: black solid 1px;
    margin-bottom: 2.5em;
    padding-top: 1em;
    padding-left: 2em;
    padding-right: 2em;

}
