body {
  background-color: antiquewhite;
  font-family: 'Roboto Slab';
  font-weight: 400;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3 {
  color: rgb(0, 51, 26);
}

h1 {
  font-size: 3rem;
}

p {
  line-height: 2.0;
}

main section {
  font-size: 1.25rem;
  padding: 10px;
}

main section>* {
  max-width: 800px;
  margin: auto;
}

.hero h2 {
  font-weight: 700;
  position: relative;
  text-shadow: 0px 0px 2px rgb(255, 255, 255);
  text-align: center;
  margin: 10px;
}

.hero h1 {
  position: relative;
  font-size: 6rem;
  text-align: center;
  margin: 10px;
}

img#plantimg {
  height: 100vh;
  float: right;
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: "";
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.25;
}

.hero #scroll-indicator {
  position: absolute;
  bottom: 10px;
  left: calc(50% - 50px);
  display: block;
  margin: auto;
  width: 100px;
}

div.chart-container {
  min-height: 400px;
}

iframe.grafana-dashboard {
  width: 100%;
  height: 500px;
  display: block;
}


section#daten {
  background-color: rgb(0, 61, 0);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.514);
  color: antiquewhite;
}

section#daten h1 {
  color: antiquewhite;
}

section#daten h2 {
  color: antiquewhite;
}

section#daten h3 {
  color: antiquewhite;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.card {
  margin: 10px;
  border-radius: 10px;
  border-color: antiquewhite;
  border-width: 3px;
  border-style: solid;
  padding: 10px;
}

.card .gauge {
  font-size: 5em;
}

@media (max-width: 600px) {
  .hero {
    min-height: 300px;
  }

  .hero #scroll-indicator {
    visibility: hidden;
  }

  .hero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 12pt;
  }

  main section {
    font-size: 1.0rem;
  }
}