body {
    background-color: black;
}

.website-container {
    display: grid;
    grid-template-rows: 800px auto auto auto auto auto;
    text-align: center;
}

@media(min-width: 1001px) {
    .category {
        display: grid;
        grid-template-columns: 0.5% 32.6% 1% 31.6% 1% 32.6% 0.5%;
        text-align: center;
    }
}

@media(min-width: 1601px) {
    .category {
        display: grid;
        grid-template-columns: 8% 26.6% 2% 26.6% 2% 26.6% 8%;
        text-align: center;
    }
}

.segment {
    background-color: rgba(0, 0, 0, 0.99);
    border-radius: 30px;
}


.top {
    background-image: url('../images/edry.png');
    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 {
    background-color: rgb(0, 34, 48);
}

.middle img {
    width: 320px;
    height: auto;
    mask-image: linear-gradient(to bottom, black 70%, transparent);
}


@media (max-width: 1000px) {
    .middle img {
        width: 550px;
        height: auto;
    }

    .category {
        display: grid;
        grid-template-rows: 50px auto 50px auto 50px auto 50px;
        text-align: center;
        width: 80%;
        position: relative;
        left: 10%;
        /* Verschiebe die Box um 12,5% nach rechts */
    }
}

.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;
}