body {
  background-color: #2b2b2b;
  background-image: url("../assets/GefechtsGeist_Banner.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: soft-light;
}
.info-container {
  max-width: 400px;
  margin: auto;
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.info-container a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
.info-container a:hover {
  color: #1afecc !important;
}
.text-justify {
  text-align: justify;
}
small {
  font-size: 10px;
}



@keyframes spin {
  from   { transform: rotate(0deg); }
  to     { transform: rotate(360deg); }
}

img.rounded-circle.mb-4 {
  animation: spin 120s linear infinite;
}