@charset "utf-8";
/* CSS Document */
/*** {
	padding:0px;
	margin:0px;
}**/

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

#background {
  position: fixed;
  height: 100%;
  width: 100%;
  background-image: url("../pictures/background.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.grid-container {
  display: grid;
  grid-gap: 10px;
  padding: 10px;
  margin-top: 50px;
  /*	grid-template-columns: repeat(12, minmax(0, 1fr));*/
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: minmax(300px, calc(100vh - 70px));
}

.grid-item {
  background-color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-around;
}

.grid-item>* {
  margin: 10px;
}

#header {
  position: fixed;
  height: 50px;
  width: 100%;
  top: 0px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-content: center;
  padding: 0px 50px;
  z-index: 2;
}

#header * {
  align-self: center;
  text-align: center;
}

#nav {
  grid-column: 2 / 6;
  padding: 0px;
  background-color: transparent;
  min-width: 320px;
}

#nav ul {
  list-style: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

#nav li {
  background-color: white;
  width: 100%;
  height: 40px;
  opacity: 85%;
  margin: 10px 0px;
}

#nav li:hover {
  opacity: 100%;
  transition: 0.2s;
}

#nav a {
  text-decoration: none;
  color: black;
  /*	font-weight: bold;*/
  width: 100%;
  height: 100%;
  font-size: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0px 40px;
}

#nav a>* {
  width: 50%;
}

#greeting {
  grid-column: 7 / 13;
  background-color: transparent;
}

#greeting p {
  background-color: white;
  padding: 50px;
  text-align: justify;
}

#oeffnung {
  grid-column: 7 / 13;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

#oeffnung img,
#information img {
  height: 200px;
}

#information {
  grid-column: 1 / 7;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

#information p {
  width: 50%;
  text-align: justify;
}

table {
  width: 50%;
  padding: 20px;
  text-align: center;
  border-spacing: 1em;
}

#logo {
  height: 80%;
  margin-left: 10px;
  border-radius: 50%;
}

/* ----------------------------------------------
 * Generated by Animista on 2021-8-17 17:27:21
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */


.slide-in-top-first {
  -webkit-animation: slide-in-top-first 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.5s both;
  animation: slide-in-top-first 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.5s both;
}

@-webkit-keyframes slide-in-top-first {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-top-first {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-top-second {
  -webkit-animation: slide-in-top-second 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 1s both;
  animation: slide-in-top-second 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 1s both;
}

@-webkit-keyframes slide-in-top-second {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-top-second {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}



/*MEDIUM VIEWPORT*/
@media only screen and (max-width: 1000px) {
  #greeting {
    grid-column: 1 / 13;
  }

  #nav {
    grid-column: 4 / 10;
  }

  .grid-container {
    grid-template-rows: minmax(100px, 50vh) minmax(100px, calc(50vh - 60px));
  }

  #nav ul {
    display: block;
  }
}

/*SMALL VIEWPORT*/
@media only screen and (max-width: 700px) {
  #greeting {
    grid-column: 1 / 13;
    background-color: white;
  }

  #greeting p {
    background-color: transparent;
    padding: 0px;
  }

  #nav {
    grid-column: 1 / 13;
  }

  #nav a {
    justify-content: space-between;
  }

  #nav a i {
    width: 30%;
  }

  #nav a p {
    width: 70%;
  }

  #oeffnung {
    grid-column: 1 / 13;
  }

  #information {
    grid-column: 1 / 13;
  }

  #header {
    display: none;
  }

  .grid-container {
    /*		grid-template-rows: minmax(300px, 50vh) minmax(300px, calc(50vh - 30px));*/
    grid-template-rows: 50vh calc(50vh - 30px);
    margin-top: 0px;
    /*		grid-template-rows: 50vh calc(50vh - 20px);*/
  }

  table caption {
    font-size: 100% !important;
  }

  #footer {
    flex-wrap: wrap;
    /*		height: auto;*/
    width: 100%;
    height: calc(50vh - 70px);
    min-height: 300px;
  }

  #footer iframe {
    width: 200px;
    height: 125px;
  }

  table {
    width: 100% !important;
  }

  /*    this section here actually defines the background used    */
  #background {
    background-image: url("../pictures/background.jpg");
  }
}