@font-face {
  font-family: "Josefin Sans";
  src: url("./Font/JosefinSans-Regular.woff") format("woff");
}

::-webkit-scrollbar {
  display: none;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  font-family: "Josefin Sans", sans-serif; /* Verwende die Inter-Schriftart für die gesamte Webseite */
  background-color: #560dcc;
  margin: 0;
  padding: 0;
  display: flex;
  /* min-height: 100dvh;  Stellt sicher, dass der Hintergrund die gesamte Höhe einnimmt */
  min-height: 100dvh;
  /*color: #560DCC #560DCC #BEADDA #BEADDA #3B2B55 #1E1133 #efeaea;
     */
}

header {
  background-color: #9074a4e6;
  border-bottom: 2px solid #560dcc;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
  flex-shrink: 0;
}

@media (max-width: 899px) {
  header {
    position: fixed;
    top: 0;
    background-color: #9074a48b;
  }
}

header div {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
  height: 50px;
}

header a {
  font-size: 30px;
  color: #560dcc;
  text-decoration: none;
  font-weight: 700;
  line-height: 1px;
}

footer {
  border-top: 2px solid #560dcc;
  background-color: #9074a4e6;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  z-index: 1;
}

@media (max-width: 899px) {
  footer {
    position: fixed;
    bottom: 0;
  }
}

.footerdiv {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 50px;
}

.footer-link {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 7px;
  color: #000000;
  text-decoration: none;
  font-weight: 300;
  margin: 0px 50px;
}

.footer-icon {
  width: 30px;
  height: 30px;
  margin-top: 5px;
  display: block;
  margin: auto;
}

#search-bar-container {
  position: fixed;
  bottom: 100px;
  width: 100%;
  height: 50px;
  display: none;
  justify-content: center;
  z-index: 2;
}

.search-box {
  padding: 10px;
  border: 2.5px solid #560dcc;
  border-radius: 10px;
  min-width: 300px;
  z-index: 1;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  display: none;
}

h1 {
  border-bottom: 1px solid #560dcc;
  border-top: 1px solid #560dcc;
  font-size: 25px;
  color: #560dcc;
  text-decoration: none;
  font-weight: 700;
  padding: 0px 20px 0px;
  margin: 10px 0 10px;
  box-sizing: border-box;
  word-wrap: break-word;
}

.wide {
  letter-spacing: 30px;
}

.border-text {
  text-shadow: -1px -1px 0 #560dcc, 1px -1px 0 #560dcc, -1px 1px 0 #560dcc,
    1px 1px 0 #560dcc;
}

h2 {
  border-bottom: 1px solid #560dcc;
  border-top: 1px solid #560dcc;
  font-size: 20px;
  color: #560dcc;
  text-decoration: none;
  font-weight: 700;
  padding: 0px 20px 0px;
  margin: 10px 0 0;
  box-sizing: border-box;
  word-wrap: break-word;
}

h3 {
  border-bottom: 1px solid #560dcc;
  border-top: 1px solid #560dcc;
  font-size: 17px;
  color: #560dcc;
  text-decoration: none;
  font-weight: 700;
  padding: 0px 20px 0px;
  margin: 10px 0 0;
  box-sizing: border-box;
  word-wrap: break-word;
}

.flexbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-sizing: border-box;
  overflow: auto;
  height: 100%;
  width: 100%;
  flex: 1;
}

.main-content {
  background-color: #efeaea;
  position: relative;
  height: 100dvh;
  max-width: 900px;
  margin: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

@media (min-width: 900px) {
  .main-content {
    height: 98dvh;
    border-radius: 10px;
    border: 2px solid #560dcc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}

.scroll-area {
  position: relative;
  flex: 1;
  overflow-y: auto;
  background-color: #efeaea;
  z-index: 1;
  color: #3b383f;
  font-weight: 500;
  line-height: 1.4;
}

.area {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  flex: 1;
  overflow-y: auto;
  background-color: #efeaea;
  z-index: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 5px;
  padding: 5px;
}

.card {
  background-color: #81788f75;
  border-radius: 10px;
  height: 60px;
}

.hide-md {
  display: none; /* oder flex, grid, je nachdem */
}

@media (min-width: 530px) and (max-width: 706px) {
  .hide-md {
    display: flex; /* oder flex, grid, je nachdem */
  }
}

.hide-ma {
  display: none; /* oder flex, grid, je nachdem */
}

@media (min-width: 879px) {
  .hide-ma {
    display: flex; /* oder flex, grid, je nachdem */
  }
}

.card a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}

.card-text {
  font-size: 13px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding-left: 5px;
}

.card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.section {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.card2 {
  width: 160px;
  height: 160px;
  border-radius: 10px;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
  padding: 0px 5px;
}

.card2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.card2-text {
  position: absolute;
  bottom: 5px;
  left: 10px;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.short {
  position: relative;
  object-fit: cover;
  width: 225px;
  height: 400px;
  flex-shrink: 0;
  margin-left: 5px;
}

.video-container img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
}

.video-container iframe {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 0;
  aspect-ratio: 9 / 16;
}

.button {
  position: absolute;
  max-width: 100px;
  max-height: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  pointer-events: none;
}

.rank {
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 5px;
  padding: 5px;
}

.rank-number {
  padding: 15px;
  font-weight: 700;
  color: #1e1133;
  width: 10px;
}

.rand {
  position: absolute;
  justify-content: center;
  align-items: center;
  background-color: rgba(211, 211, 211, 0.225);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 50px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 26px -18px inset;
  border: 0.1px solid rgba(211, 211, 211, 0.211);
  width: 100vw;
  min-height: 100%;
  display: flex;
}

.rand1 {
  width: 100vw;
}
.rand2 {
  width: 90vw;
}
.rand3 {
  width: 80vw;
}
.rand4 {
  width: 70vw;
}
.rand5 {
  width: 60vw;
}
.rand6 {
  width: 50vw;
}
.rand7 {
  width: 40vw;
}
.rand8 {
  width: 30vw;
}
.rand9 {
  width: 20vw;
}
.rand10 {
  width: 10vw;
}

.rand {
  display: none;
}

@media (min-width: 899px) {
  .rand {
    display: flex;
  }
}

.text-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background-color: #efeaea;
  overflow-wrap: break-word;
  padding: 0px 15px;
  margin: 5px;
}

.image-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 5px 15px 5px 15px;
}

.image-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 15px 10px -10px;
}

.video-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 5px 15px;
}

.video-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  border: 0;
  aspect-ratio: 9 / 16;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 15px 10px -10px;
}

.video-box iframe {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 15px 10px -10px;
  z-index: 2;
}

.video-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
  cursor: pointer;
}

.video-box16x9 {
  position: relative;
  display: flex;
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 15px 10px -10px;
}
.video-box16x9 iframe {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 15px 10px -10px;
  z-index: 2;
}

.video-box16x9 img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
  cursor: pointer;
}



.quote-box {
  display: none;
  flex: 1;
  height: auto;
  flex-direction: column;
  border: 2px solid #560dcc76;
  border-radius: 10px;
  color: #333;
  padding: 50px;
  justify-content: center;
}

@media screen and (min-width: 600px) {
  .video-wrapper {
    flex-direction: row;
    align-items: stretch;
  }
  .video-box {
    border: 2px solid #560dcc;
    border-radius: 10px;
  }
  .quote-box {
    display: flex;
  }
}

.platzhalter {
  display: none;
  height: 50px;
  background-color: #9074a4e6;
}

@media (max-width: 900px) {
  .platzhalter {
    display: block;
  }
}
