body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ececec;
}

.title {
    text-align: center;
}


.title > img {
    max-width: min(1200px, 100%);
}

.stats {
    text-align: center;
    text-shadow: 5px 5px 5px black;
}

.oneten { color: goldenrod; }
.onehundred { color: pink; }
.any { color: limegreen; }
.incomplete { color: crimson; }

.stats > h1 { font-size: 5em; }
.stats > h2 { font-size: 3em; }
.stats > h3 { font-size: 2em; }

.gallery {   
    background-color: #ffffff77;
    padding: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery > * {
    max-width: 30%;
    margin: 10px
}

.gallery > iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.background::before {
    content: "";
    background-image: linear-gradient(rgba(255, 255, 255, 0.63), rgba(0, 0, 0, 0.623));
    position: fixed;
    background-attachment: scroll;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(5px);
    margin: -10px;
    z-index: -1;
}

.comments {
    background-color: #ffffff1c;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    text-shadow: 2px 2px 5px black;
}