/**
 * @Author: Mael Seewald
 * @Date:   2024-12-11 08:50:13
 * @Last Modified by:   Mael Seewald
 * @Last Modified time: 2024-12-11 16:56:49
 */
::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(248, 255, 245);
}
header {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
h1 {
  margin: 0;
  margin-right: 25px;
  color: white;
  font-size: 15vw;
  font-family: Arial, Helvetica, sans-serif;
}
video {
  position: absolute;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.hoch {
  display: none;
}
.normal {
  display: flex;
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.regeln {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 93vw;
}
h2 {
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  font-size: 90px;
  margin: 0;
}
.box {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  text-align: left;
  height: 61vh;
  width: 29vw;
  background-color: rgb(248, 255, 245);
  border-radius: 20px;
  transition: box-shadow 0.3s ease;
}

.box:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}
a {
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  font-size: 30px;
  margin: 10px;
}
p {
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  font-size: 20px;
  margin: 30px;
  margin-top: 0px !important;
  margin-bottom: 10px !important;
}
img {
  position: absolute;
  bottom: 20px;
  width: 90%;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  z-index: 1;
}
footer {
  height: 15vh;
  width: 97vw;
  background-color: rgb(255, 255, 255);
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  margin: 20px;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
footer a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20vw;
  height: 50px;
  background-color: rgb(245, 245, 245);
  border-radius: 10px;
  transition: 0.3s ease;
}
footer a:hover {
  width: 20.6vw;
  height: 53px;
}
@media (max-width: 480px) {
  h1 {
    font-size: 20vw;
    text-align: center;
    margin: 0;
  }
  i .normal {
    display: none;
  }
  .hoch {
    display: flex;
  }
  .regeln {
    flex-direction: column;
  }
  .box {
    width: 90vw;
  }
  footer {
    height: 17vh;
    justify-content: center;
  }
  footer a {
    width: auto;
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  footer p {
    text-align: center;
    margin: 0;
  }
}
