* {
  margin: 0;
  padding: 0;
  color: #0e0f33;
  white-space: nowrap;
}

body {
  display: flex;
  flex-direction: column;
  height: 100dvh;
}

.titlebox {
  width: 100%;
  position: fixed;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  font-size: 17vw;
}
.title {
  width: 100vw;
  height: 13.5vw;
  display: flex;
  align-items: center;
  font-family: 'degular-display', sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}
.middle {
  padding-left: 8.6%;
}

.right {
  padding-left: 17.7%;
}

.absatz {
  padding-left: 26px;
}

.span {
  font-size: 12px;
  position: relative;
  top: -6.5px;
  font-weight: 500;
}

.infocontainer {
  display: flex;
  flex-direction: row;
  font-size: 24px;
  vertical-align: top;
  line-height: 1.4;
  font-family: 'degular-mono', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings:
    'ss03' 1,
    'ss04' 1,
    'ss05' 1;
}

.inforeihen {
  margin: 10px;
  display: flex;
  width: 100%;
  height: 50px;
  flex-direction: column;
}

.info {
  height: 28px;
}

@media (max-width: 850px) {
  .infocontainer {
    flex-direction: column;
  }
}

main {
  position: relative;
}

.textoverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  color: black;
}

.grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(12, 1fr);
  width: 100vw;
}

.box {
  border-radius: 0px;
  overflow: hidden;
}

.box1 {
  grid-column: 1 / span 3;
  grid-row: 1 / span 5;
}
.box2 {
  grid-column: 4 / span 8;
  grid-row: 1 / span 3;
}

.box3 {
  grid-column: 4 / span 3;
  grid-row: 4 / span 2;
}

.box4 {
  grid-column: 7 / span 2;
  grid-row: 4 / span 2;
}

.box5 {
  grid-column: 1 / span 8;
  grid-row: 6 / span 7;
}
