body {
  background-color: black;
}

.website-container {
  display: grid;
  grid-template-rows: auto auto auto;
  text-align: center;
}

.top {
  background-color: rgb(0, 34, 48);
}

.middle {
  background-color: rgb(0, 34, 48);
}


.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
}