html, body{
    width: 100%;
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(20, 20 , 25);
    color: bisque;
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

h1{
    text-align: center;
    margin: 40px 25px;
    font-size: 20px;
}

#statistiken{
    display: grid;
    grid-auto-flow: row;
    width: 100%;
    gap: 60px;
    margin-bottom: 35px;
}

.statistik{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zahl{
    font-size: 40px;
    margin: 13px;
}

.beschreibung{
    text-align: center;
    font-size: 17px;
}

@media only screen and (min-width: 768px) {
    html, body{
        height: 100%;
    }

    h1{
        max-width: 600px;
        font-size: 30px;
        margin-bottom: 0px;
    }

    #statistiken{
        grid-template-columns: 1fr 1fr;
        width: auto;
        gap: 100px;
        align-items: center;
        margin-bottom: 0%;
        flex-grow: 0;
        margin: 40px;
    }

    .zahl{
        font-size: 65px;
    }

    .beschreibung{
        font-size: 20px;
    }

    .space{
        flex-grow: 1;
    }
}

@media only screen and (min-width: 1000px) {
    #statistiken{
        grid-template-columns: 1fr 1fr 1fr;
    }

    .zahl{
        font-size: 100px;
    }

    .beschreibung{
        font-size: 25px;
    }
}
