body {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.information {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 2;
    height: 80vh;
    width: 80%;
    padding: 0 10%;
    text-align: center;
}

.information img {
    height: 45vh;
    width: auto;
}

.information .statistics {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.information .statistics .statistic {
    margin: 0 2vw;
    color: #fff;
}

.information .statistics .statistic i {
    font-size: 3vh;
    color: rgb(var(--gradient-one));
    margin-bottom: 1vh;
}

.information .statistics .statistic h1 {
    font-size: 2.5vh;
    margin: 0vh 0% .5vh 0%;
}

.information .statistics .statistic h2 {
    font-size: 2vh;
    margin: 0;
}

@media screen and (max-width: 600px), (orientation : portrait) {
    .information img {
        height: 35vh;
    }

    .information .statistics {
        flex-wrap: wrap;
        align-self: flex-end;
    }

    .information .statistics .statistic {
        width: 50%;
        margin: 0vh 0vw 3vh 0vw;
    }
}