body {
  background-color: #191c1f;
  background-image: url("../assets/patter_background.png");
  background-repeat: repeat;
  display: block;
  overflow-x: hidden;
  font-family: Tahoma, sans-serif;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}

input[type="text"] {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-align: center;
  border: 0px solid #2d9fd9;
  color: #36393f;
  width: 320px;
  height: 40px;
  padding-left: 10px;
}

input[type="text"]:focus {
  outline: none;
  border: 0px solid #a0d18c;
  color: #36393f;
}

/* unvisited link */
a:link {
  color: #a1a1a6;
  text-decoration: none;
}
/* visited link */
a:visited {
  color: #a1a1a6;
  text-decoration: none;
}
/* mouse over link */
a:hover {
  color: #f5f5f7;
  text-decoration: none;
}
/* selected link */
a:active {
  color: #a1a1a6;
  text-decoration: none;
}

.grayback {
  background-color: #36393f;
  margin-top: 12px;
  margin-bottom: 12px;
}

.darkgrayback {
  background-color: #212529;
  margin-top: 12px;
  margin-bottom: 12px;
}

.woodback {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../assets/wood.jpg");
}

.boxshadow {
  box-shadow: 0px 5px 30px black;
}

.hoveringR {
  position: absolute;
  top: 50%;
  left: 50%;
  animation-name: hoveringR;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes hoveringR {
  from {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -30px);
  }
  to {
    transform: translate(0, -0px);
  }
}

.hoveringL {
  position: absolute;
  top: 50%;
  left: 50%;
  animation-name: hoveringL;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes hoveringL {
  from {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 30px);
  }
  to {
    transform: translate(0, -0px);
  }
}

.hovering_mid {
  position: absolute;
  top: 50%;
  left: 50%;
  animation-name: hovering_mid;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes hovering_mid {
  from {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 20px);
  }
  to {
    transform: translate(0, -0px);
  }
}

.navbar {
  background-color: #212529;
}

.card-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.navbar-toggler {
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
  padding-right: 2px;
  border-width: 0px;
}

.button {
  border-width: 0px;
}

.nocard {
  margin-top: 32px;
  margin-bottom: 46px;
  margin-left: auto;
  margin-right: auto;
  max-width: 890px;
}

.dark h1 {
  color: #f5f5f7;
  font-size: 1.75rem;
}

.dark h2 {
  color: #f5f5f7;
  font-size: 1.75rem;
}

.dark h4 {
  color: #f5f5f7;
}

.dark h6 {
  color: #6d6d6d;
}

.darkpost h4 {
  color: #f5f5f7;
  height: 31px;
}

.dark h3 {
  color: #a1a1a6;
  font-size: 1.2rem;
  text-align: left;
  margin-bottom: 20px;
}

.dark h3 > span {
  color: white;
  background-color: #23a6d5;
  padding: 10px;
  line-height: 36px;
  border: #23a6d5;
  box-decoration-break: clone;
}

.dark h5 {
  color: #a1a1a6;
  font-size: 1.15rem;
}

.darkpost h5 {
  color: #a1a1a6;
  font-size: 1.15rem;
  height: 21px;
}

.popout h4 {
  color: #333333;
}

.popout {
  color: #333333;
}

.light h2 {
  font-weight: 600;
  color: #3b3b3b;
}

.light h5 {
  color: #333333;
  text-align: left;
  margin-bottom: 20px;
}

.contact a:link {
  color: #2222af;
}

section {
  padding-top: 20px;
  padding-bottom: 20px;
}

section h1 {
  font-size: 4em;
  font-weight: 900;
  color: #f5f5f7;
  text-align: left;
  margin-bottom: 20px;
}

section p {
  font-size: 16px;
  color: #f5f5f7;
  font-weight: 300;
}

button {
  max-width: 50%;
  border-radius: 5px !important;
}

.flip-box {
  vertical-align: middle;
  aspect-ratio: 1 / 1;
  padding: 12px;
  background-color: transparent;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateX(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  background-color: #e73c7e;
  color: black;
}

.flip-box-back {
  background-color: #3f97c9;
  color: white;
  transform: rotateX(180deg);
}

.bg-table {
  background-image: url("../assets/mahjong_table_bg.jpg");
  background-position-y: center;
  background-position-x: center;
  background-size: cover;
}

.body_hero {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 30s ease infinite;
  height: 100vh;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.footer {
  color: #6d6d6d;
  font-size: 12px;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 42px;
}

#contact {
  text-align: center;
  background-color: #212529;
  color: white;
}
#contact h6 {
  text-align: center;
  color: rgb(74, 77, 94);
}

#contact a:link {
  color: #a1a1a6;
  text-decoration: none;
  color: rgb(74, 77, 94);
}
/* visited link */
#contact a:visited {
  color: #a1a1a6;
  text-decoration: none;
  color: rgb(74, 77, 94);
}
/* mouse over link */
#contact a:hover {
  color: #f5f5f7;
  text-decoration: none;
  color: rgb(74, 77, 94);
}
/* selected link */
#contact a:active {
  color: #a1a1a6;
  text-decoration: none;
  color: rgb(74, 77, 94);
}

.hero_link {
  position: relative;
}

.noselect {
  color: #a1a1a6;
  text-decoration: none;
}

.modal-body-impressum {
  padding: 20px;
}
