@font-face {
  font-family: Comfortaa; /* set name */
  src: url(Comfortaa-Regular.ttf); /* url of the font */
}

@font-face {
  font-family: Neon-Vampire; /* set name */
  src: url("Neon Vampire.ttf"); /* url of the font */
}

/*für alle paragraphen:*/
body {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.2em;
}

.logo1 img {
  height: 200px;
  width: 200px;
  margin: 0px;
  padding: 10px;
  border-radius:1rem;
  vertical-align: middle;
  float: left;
}
.logo2 img {
  height: 200px;
  width: 200px;
  margin: 0px;
  padding: 10px;
  border-radius:1rem;
  vertical-align: middle;
  float: right;
}
.imgContainer{
    float:left;
}
.bento-section img {
  display: block;
  margin: 0 auto; /* zentriert */
}
h1 {
  font-family: "Neon-Vampire", monospace;
}

.bento-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  grid-template-rows: repeat(3, 1fr);    /* 3 rows */
  gap: 1rem;
  max-width: 103dvw;     /* limit width to fit laptops nicely */
  width: 100.7dvw;
  margin: -1rem;        /* center the grid horizontally */
  height: 100.7dvh;          /* fits most laptops */
  padding: 2rem;
  background: linear-gradient(135deg, #CA0041, #980040);
  font-family: 'Comfortaa', sans-serif;
  box-sizing: border-box; /* include padding in width */
}


/* Bento boxes */
.bento-section {
  background-color: #E4E3E0;
  border: 5px solid #2D231D;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease;
  padding: 1rem;
}

/* Box types */
.bento-section.big {      /* 2x2 box */
  grid-column: span 2;
  grid-row: span 2;
}

.bento-section.wide {     /* 2x1 box */
  grid-column: span 2;
  grid-row: span 1;
}

.bento-section.tall {     /* 1x2 box */
  grid-column: span 1;
  grid-row: span 2;
}

/* Images inside boxes */
.bento-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive tweaks */
@media (max-width: 1200px) {
  .bento-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-section.big,
  .bento-section.wide {
    grid-column: span 2;
  }

  .bento-section.tall {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .bento-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-section.big,
  .bento-section.wide,
  .bento-section.tall {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .bento-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .bento-section {
    grid-column: span 1;
    grid-row: auto;
  }
}

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
