body {
    background-color: black;
}

.website-container {
    display: grid;
    grid-template-rows: 1300px auto auto auto;
    text-align: center;
}

.center {
    text-align: justify;
}

.top {
    display: grid;
    grid-template-rows: 40% 60%;
    position: relative;
}

.top video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures the video covers the area */
    z-index: -1;
    /* Keeps the video in the background */
}

@media (max-width: 1200px) {
    .video {
        display: none;
    }

    .top {
        background-image: url('../images/indexBackground.png');
        background-repeat: no-repeat;
        background-size: cover;
    }
}


.topDown {
    grid-template-rows: repeat(10, 1fr);
    /* Divided into 10 rows */
    background: linear-gradient(to bottom, transparent, rgba(0, 34, 48, 0.99));
}

.topDownBlack {
    grid-template-rows: repeat(10, 1fr);
    /* Divided into 10 rows */
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 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;
}

.spacer10Length {
    margin: 10px 0;
}

.spacer25 {
    margin: 0 25px;
}

.spacer25Length {
    margin: 25px 0;
}

* {
    box-sizing: border-box
}

.headerMobile {
    display: none;
}

@media (max-width: 1100px) {

    /*früher 1200*/
    .website-container2 {
        display: grid;
        grid-template-columns: 10% 80% 10%;
    }

    .header {
        display: none;
    }

    .headerMobile {
        display: block;
    }
}