@charset "utf-8";

/* CSS Document */
body {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1.0em;
  font-style: normal;
  color: #888;
  text-align: center;
  padding: 10px;
  background-color: #333;
}

/*HEADER incl. Beschriftung */
header {
  background-color: black;
  position: relative;
  text-align: center;
  color: orange;
}

header {
  width: 100%;
}

.container {
  display: flex;
  flex-wrap: wrap;
  /* this */
  gap: 50px;
}

.container>div {
  height: 150px;
  flex: max(350px, 100%/4 + 0.1%);
  /* and this */
  background: #222;
  font-family: 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
  font-weight: 400;
  color: #777;
  padding: 10px;
}

.card {
  font-family: 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
  font-size: 1.0em;
  color: gray;
  text-align: center;
  border: 1px orange Solid;
  margin: 5px;
  padding: 10px;
}

p.info {
  font-family: 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
  color: yellow;
  font-size: 1.0em;
  font-weight: normal;
  font-style: normal;
  padding: 10px;
  text-align: center;
}

p.center {
  font-family: 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
  color: #999;
  font-size: 1.0em;
  text-align: center;
}

img {
  max-width: 99%;
  margin: 5px 10px 5px 5px;
}

p {
  font-family: 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
  font-size: 1.0em;
  text-align: justify;
  font-style: normal;
  color: gray;
  padding: 5px;
}

/*Schriften etc.*/
/* Glyph, by Harry Roberts */
.hr2 {
  border: 0;
  height: 3px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(9, 84, 132), rgba(0, 0, 0, 0));
}

a {
  font-family: Verdana, sans-serif;
  color: orange;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 6px 6px;
  text-decoration: none;
  font-size: 1.0em;
}

a:hover {
  color: #999;
  font-size: 1.0em;
}

h3 {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1.2em;
  letter-spacing: 2px;
  color: orange;
  font-style: italic;
  font-weight: normal;
  text-align: center;
  padding-bottom: 15px;
  margin-top: 1px;
}

@media sreen and (max-width: 600px) {
  body {
    font-family: 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
    color: dimgrey;
    font-size: 1.0em;
    line-height: 1.0em;
  }

  .card {
    font-size: 120%;
  }
}


/* styles 4:3 */
@media (width <=800px) and (width > 800px) {
  body {
    font-family: 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
    color: dimgrey;
    font-size: 1.4em;
    line-height: 1.4em;
  }

  .card {
    font-size: 140%;
  }
}


/* styles 4:3 */
@media (width <=1024px) and (width > 1024px) {
  body {
    font-family: 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
    color: dimgrey;
    font-size: 1.6em;
    line-height: 1.6em;
  }

  .card {
    font-size: 160%;
  }

  .img {
    width: 80px;
    margin-bottom: 5px;
  }


}

/* styles 16:9 (HD) */
@media (width <=1280px) and (width > 1280px) {
  body {
    font-family: 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.8em;
    line-height: 1.8em;
    color: dimgrey;
  }

  .card {
    font-size: 160%;
  }

  .bild {
    max-width: 80px;
    margin-bottom: 5px;
  }


}


/*High resolution (2x) */
@media screen and (web-kit-min-device-pixel-ratio: 2),
screen and (min-resolution: 192dpi) {}