/* Seite auf volle Höhe bringen und Margins entfernen */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');


html, body {
  height: 100%;
  margin: 0;
		-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* Hintergrundbild */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: radial-gradient(rgb(255 255 255 / 0%) 1px, rgba(0, 0, 0, 0.2) 1px), url(../img/background.jpg);
    background-repeat: repeat, /* Pattern kacheln */ no-repeat;
    background-size: 10px 10px, /* Größe eines Pattern-„Dots“ Abstands */ cover;
    background-position: center, top;
	font-family: 'Open Sans', sans-serif;
}

/* Die Box in der Mitte */
.box {
    width: auto;
    height: auto;
    background-color: rgb(24 24 24 / 79%);
    border: 1px solid rgb(0 0 0);
    box-shadow: 0 0 20px 5px rgb(0 0 0 / 90%);
    backdrop-filter: blur(5px);
    padding: 10px 10px 25px 10px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px 30px 10px 30px;
    font-weight: 100;
}

h1#welcome {
    font-weight: bolder;
    max-width: 300px;
    text-align: center;
}

span#sub2 {
    text-align: center;
    margin-top: 20px;
}

ul.stats {
    font-size: small;
    list-style: none;
    display: flex;
    flex-direction: row;
    padding: 0px;
}

li.item {
    background: #00000087;
    padding: 3px;
    margin: 0px 3px 0px 3px;
    border: 1px solid #323232;
    border-radius: 5px;
}

.video {
  display: none;
}

@media only screen and (min-width: 768px) {
  .video {
    display: block;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

