body {
  background-color: black;
}

.website-container {
  display: grid;
  grid-template-rows: 800px auto auto;
  text-align: center;
}

.top {
  background-image: url('../images/contactBackground.PNG');
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-rows: 30% 70%;
  /* != wie im index.css*/
}

.topDown {
  grid-template-rows: repeat(10, 1fr);
  /* Divided into 10 rows */
  background: linear-gradient(to bottom, transparent, rgba(0, 34, 48, 0.99));
}

.middle {
  background-color: rgb(0, 34, 48);
}

.middle img {
  width: 100%;
  height: 100%;
}

.middle2 {
  background-color: rgb(0, 44, 58);
}

.middle2 img {
  width: 100%;
  height: 100%;
}

.middle3 {
  background-color: rgb(0, 44, 58);
}

.middle3 img {
  width: 100%;
  height: 100%;
}


.bottom {
  background-color: black;
  font-weight: bold;
}

.bottom img {
  width: 3%;
  height: 3%;
}

@media (max-width: 1200px) {
  .bottom img {
    width: 9%;
    height: 9%;
  }
}

.spacer10 {
  margin: 0 10px;
}

* {
  box-sizing: border-box
}