body {
  display: flex;
  margin: 0;
}

.wrapper {
  background-color: rgb(220, 220, 220);
}

.content {
  margin: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}

.info {
  text-align: left;
  margin: 20px;
  align-items: stretch;
  background: rgb(170, 170, 170);
  font-size: 18px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.content a {
  text-decoration: none;
  color: rgb(70, 70, 70);
}

.adresse {
  flex: 40%;
}
.bild {
  flex: 60%;
}

.info img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.info:hover {
  transform: scale(1.05);
  transition-duration: 0.5s;
}

.datum {
  color: rgb(89, 167, 255);
  font-size: 30px;
}

.knopf {
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: 10px;
  width: 70%;
  text-align: center;
  padding: 2%;
  border-style: solid;
  border-radius: 10px;
  color: white;
  background: #949494;
  text-decoration-line: none;
}
.knopf:hover {
  background: var(--color_header_small);
}

/* Breite ab 800px (Desktop) */
@media screen and (min-width: 800px) {
  .content {
    min-height: 100vh;
  }
  .info {
    width: 260px;
    height: 45vh;
  }
}

/* Breite bis 799px (Mobile) */
@media screen and (max-width: 799px) {
  .content {
    min-height: 200px;
  }
  .info {
    width: 230px;
    height: 300px;
  }
}
