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);
}

.middle img {
    width: 800px;
    height: auto;
}

@media (max-width: 800px) {
    .middle img {
        width: 600px;
        height: auto;
    }  
}

.bottom {
    background-color: black;
    font-weight: bold;
}

.bottom img {
    width: 3%;
    height: 3%;
}

@media (max-width: 1200px) {
    .bottom img {
        width: 9%;
        height: 9%;
    }
}

* {
    box-sizing: border-box
}

.spacer10 {
    margin: 0 10px;
}