/*
SYNTAX CSS:

selector {
    property: value(s);
}


1) TAG Selectors --> body, h1, footer ...
2) CLASS Selectors --> .class-x, .class-y, .class-z ...
3) PSEUDOCLASS Selectors --> :hover, :focus, :checked ...

*/




body {
    margin: 0;
    background-color: black;
    font-family: "ivyepic", sans-serif;
font-weight: 800;
font-style: normal;
}




article {
  color: black;
    background-color: white;
    
    
    
    
    
}

.content-head{
  min-height: 60vh;
    
     background-image: url(../img/bg-header/Los-Angeles-Skyline-Mural-Wallpaper.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    
    
}


header {
    display: flex;
    flex-direction:row;
 
    justify-content:flex-start;
    align-items:center;
    
/*
    justify-content: space-between;
    align-items: center;
*/
    
  padding-top: 2.5px;
    padding: 10px;
    border-bottom: solid 1.5px #484848;
    background-color: black;
    
}

h1 {
    margin-top: 0;
    margin-right: 12vw;
    margin-bottom: 0;
    margin-left: 4vw;

    color: white;
    font-size: 2.5em;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: flex-start;
}

nav a {
    display: inline-block;
    margin-top: none;
    margin-right: 15px;
    margin-bottom: 6px;
    margin-left: 15px;
    
    /*
    border-style: solid;
    border-width: 1px;
    border-color: black;
*/
    border: solid 1px black;

    background-color: black;
    color:white;
    text-decoration: none;
    transition: 0.4s;
}


nav a:hover {
  border-bottom: solid 2px white;
    color: white;
   
}

nav {
    
    display: flex;
    justify-content: space-between;
text-align: left;
    
        
    
    
    
    
    
}

.current {
    background-color: black;
    color: white;
}


main {
    padding-top: 64px;
    padding-right: 0px;
    padding-bottom: 128px;
    padding-left: 0px;
    background-color: black;
    
}



article {
 max-width: 1920;
    margin-right: auto;
    margin-bottom: 100px;
    margin-left: auto;
    padding: 32px 0 60px 0;

    background-color: black;
    color: white;
    
}

h2 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    
   
    
}

.color-scheme1 content-head{
    
    
    
    display: flex;
    justify-content: center
}




h3 {
    margin: 2em 0 1em;
    font-family: droid-sans, sans-serif;
    font-size: 2.2em;
    font-weight: 400;
    text-align: center;
}

p {
    max-width: 75ch;
    margin: 1.5em auto 1.5em auto;
    padding: 0 1em;
    font-size: 1.1em;
}

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

li {
    border-top: solid 1px;
    padding: 1em 2em;
    margin-bottom: 2em;
}


.important {
    max-width: none;
    margin: 2em 0;
    padding: 1.2em 3em 1.4em 3em;
    border-top: 4px solid black;
    border-bottom: 4px solid black;

    font-size: 1.8em;
    text-align: center;
    transition: background 0.8s ease-out;
}



figure {
    margin: 50px 0;
    padding-bottom: 1em;
    background-color: #fafafa;
}

figcaption {
    margin-top: 0.8em;
    font-size: 0.9em;
    text-align: center;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
    margin: 0 0 2em;
    padding: 1.5em;
}

.image-container figure {
    flex-basis: 450px;
    flex-grow: 1;
    margin:2px;
}


.container {
    margin: 2.5em 0;
    padding: 1em;
    background-color: #fafafa;
}

.display-flex .container {
    
/* FLEXBOX-Eigenschaften: */    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    
    
    min-height: 300px;
    border: solid 4px #fafafa;
    background-color: hsl(0, 75%, 40%);
}

.item {
    margin: 0.5em;
    padding: 0.5em;
    background-color: hsl(0, 75%, 40%);
    color: white;
    text-transform: uppercase;
}

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

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

.display-flex .item {
    background-color: white;
    color: black;
}


img {
    width: 100%;
}

a {
    color: black;
}




footer {
    padding: 20px 32px 20px 32px;

    /*
    padding-top: 20px;
    padding-right: 32px;
    padding-bottom: 20px;
    padding-left: 32px;
*/

    background-color: black;
    color: white;
}
