h1
{
    font-family: Arial, Helvetica, sans-serif;
    color:#3C424F;
    text-align: center;
}

body
{
    font-family: Arial, Helvetica, sans-serif;
    color:#3C424F;
    font-size: large;
    text-align: center;
    background-image: url(pitchdeck_Background_Fischlis_C.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment:fixed;
    background-size: cover;
}

header
{
    color:white;
    /*background-color:#3C424F;*/
	background-color:#3C424FCC;
    text-align: left;
    font-variant: small-caps;

    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

footer
{
    color:white;
    background-color:#3C424FCC; /* CC heißt 80% opacity*/ /*hex opacity table: https://davidwalsh.name/hex-opacity */
    text-align:right;

    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.mainbody-flexbox
{
    text-align: center;
    background-color: white;
    padding: 5vw;
    padding-bottom: 5vw;
}

.mainbody-flexbox-align-left
{
    text-align: left;
    background-color: white;
    padding: 5vw;
    padding-bottom: 5vw;
}

.content-flexbox
{
    display: flex;
    justify-content: center;
    margin-left: 5vw; /* vw = viewport width, es gibt auch viewport height */
    margin-right: 5vw;
}

.content-flexbox-align-left /* aus mir unbekannten Gründen beißt sich das mit mainbody-flexbox und erstellt neue spalten wenn man eine neue überschrift einfügt*/
{
    text-align: left;
    display: flex;
    justify-content: center;
    margin-left: 5vw; /* vw = viewport width, es gibt auch viewport height */
    margin-right: 5vw;
}

.header-flexbox
{
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
}


.navigationBar ul
{
    list-style-type: none;
    overflow: hidden;
}

.navigationBar a    /*elememts in the navigation bar (e.g. link to impressum, games, etc.)*/
{
    color: white;
    text-decoration: none;
    padding: 5px;
    /*padding-block: 15px; /*vertical padding 
    padding-inline: 15px; /*horizontal padding*/

    /*margin: 60px; /* margin = distance to the next same element */
    

}

.navigationBar a:hover
{
    background-color: black;
}

.navigationBar li /*describes how the list elements in the navigation bar behave*/
{
    float:left;
    margin: 5px;
}

.responsiveImage 
{
    max-width: 80%;
    height: auto;
    border-radius:10px;
}

.responsiveImageSmall
{
    width: 20%;
    height: auto;
    border-radius:10px;
}


.responsiveLogo
{
    max-width: 50%;
    height: auto;
    border-radius:10px;
}

@media (max-width: 800px) { /*as soon as the screen gets too narrow, another formatting is used*/
    .responsiveLogo
    {
        max-width: 100%;
        height: auto;
    }
}

/*gallery*/

div.gallery {
    border: 1px solid #ccc;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
    color: white;
    background-color: #3C424F;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }