body {
    background-color: black;
}

.website-container {
    display: grid;
    grid-template-rows: 1300px auto auto;
    text-align: center;
}

.website-container2 {
    display: grid;
    grid-template-columns: 20% 60% 20%;
}

.center {
    text-align: justify;
}

.top {
    background-image: url('../images/indexBackground.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    grid-template-rows: 40% 60%; 
}

.topDown {
    grid-template-rows: repeat(10, 1fr);
    /* Divided into 10 rows */
    background: linear-gradient(to bottom, transparent, rgba(0, 34, 48, 0.99));
  }

.middle img {
    width: 100%;
    height: 650px;
}

.center img {
    width: 80px;
    height: 80px;
}

.icons img {
    width: 40px;
    height: 40px;
}


.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
}

.headerMobile{
    display: none;
}

@media (max-width: 1000px) { /*früher 1200*/
    .website-container2 {
        display: grid;
        grid-template-columns: 10% 80% 10%;
    }
    .header{
        display: none;
    }
    .headerMobile{
        display: block;
    }
}