@import url("https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@font-face {
  font-family: "PPAir-Black";
  src: url(../DATA/PPAir-Black.woff2);
  font-weight: 900;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  height: 100vh;
  font-size: 22px;
  background-color: #f2f2f2;
}

h1 {
  text-transform: uppercase;
  font-size: 6.854rem;
  color: #f2f2f2;
  font-family: "PPAir-Black";
  line-height: 90%;
}

h2 {
  font-size: 2.618rem;
  font-family: "PPAir-Black";
  color: #18181c;
  line-height: 95%;
}

a {
  font-size: 1rem;
  text-decoration: none;
  -webkit-text-decoration: none;
  -moz-text-decoration: none;
  -ms-text-decoration: none;
  color: #18181c;
  font-family: "Anonymous Pro", monospace;
  font-weight: 400;
  font-style: normal;
  transition: 0.25s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
a:hover {
  color: #12ff69;
}

p {
  font-size: 1rem;
  color: #18181c;
  font-family: "Anonymous Pro", monospace;
  font-weight: 400;
  line-height: 160%;
  font-style: normal;
  font-style: normal;
}

.name,
.jahr {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 999;
}

.hero-img-wrapper {
  width: 0%;
  height: 60%;
  position: absolute;
  top: 20%;
  left: 10%;
  padding: 2rem;
}
.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.headlines {
  margin-top: 4rem;
  z-index: 3;
  position: absolute;
  top: 20%;
  mix-blend-mode: difference;
  padding: 2rem;
}

.header {
  width: 100%;
  position: fixed;
  justify-content: space-between;
  display: flex;
}

.header-left {
  left: 0;
  z-index: 3;
  top: 0;
  padding: 0.5rem;
}
.header-left p {
  line-height: normal;
}

.header-right {
  z-index: 3;
  right: 0;
  top: 0;
  display: flex;
  gap: 4rem;
  padding: 0.5rem;
}

.footer {
  z-index: 3;
  width: 100%;
}

.footer-left {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 0.5rem;
}
.footer-left p {
  line-height: normal;
}

.footer-right {
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 4rem;
  padding: 0.5rem;
}

.info-text {
  max-width: 55rem;
  position: absolute;
  top: 5%;
  left: 0;
  padding: 2rem;
}
.info-text .info-img-wrapper {
  opacity: 0;
  width: 30%;
  height: auto;
  transform: translateX(-100%);
}
.info-text .info-img-wrapper img {
  width: 100%;
  height: 100%;
  padding-bottom: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.projekte-wrapper {
  width: 100%;
  position: absolute;
  top: 10%;
}
.projekte-wrapper .projekte-liste {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.projekte-wrapper .projekte-liste p {
  text-transform: uppercase;
}
.projekte-wrapper .projekte-liste .liste-einheit {
  width: 100%;
  margin-bottom: 0.5rem;
  z-index: 3;
}
.projekte-wrapper .projekte-liste .liste-einheit .liste-item {
  z-index: 3;
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
}
.projekte-wrapper .projekte-liste .liste-einheit .liste-item .item-Jahr {
  text-align: right;
}
.projekte-wrapper .projekte-liste .liste-einheit .liste-item p {
  width: 100%;
}
.projekte-wrapper .projekte-liste .liste-einheit a {
  padding: 0 2rem;
}
.projekte-wrapper .projekte-liste .liste-einheit a:hover {
  background-color: #12ff69;
  color: #f2f2f2;
}

.hover-reveal {
  position: absolute;
  width: 220px;
  height: 250px;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.2);
  transition: all 0.5s ease-out;
  z-index: 100;
}
.hover-reveal img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 100;
}

.projekt-container {
  height: 100%;
  width: 100%;
  padding-bottom: 8px;
}
.projekt-container .projekt-text {
  max-width: 50rem;
  padding: 2rem;
}
.projekt-container h2 {
  display: flex;
  align-items: center;
  text-align: left;
  height: 30vh;
}
.projekt-container .projekt-gallery {
  margin-top: 2rem;
  display: none;
}
.projekt-container .projekt-gallery .row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}
.projekt-container .projekt-gallery .column {
  flex: 33.33%;
  max-width: 33.33%;
  padding: 0 4px;
}
.projekt-container .projekt-gallery .column video {
  margin-top: 8px;
  width: 100%;
}
.projekt-container .projekt-gallery .column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

@media (max-width: 1600px) {
  html,
  body {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  html,
  body {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  html,
  body {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  a:hover {
    color: initial;
  }
  a:active {
    color: #12ff69;
  }
  .hover-reveal {
    display: none;
  }
  .projekte-wrapper .projekte-liste .liste-einheit .liste-item {
    grid-template-columns: repeat(2, 1fr);
  }
  .projekte-wrapper .projekte-liste .liste-einheit a:hover {
    background-color: initial;
  }
  .projekte-wrapper .projekte-liste .liste-einheit a:active {
    background-color: #12ff69;
  }
  .item-art {
    display: none;
  }
  h1 {
    font-size: 5.5rem;
  }
  html,
  body {
    font-size: 15px;
  }
  .footer-right,
  .header-right {
    gap: 1.5rem;
  }
  .headlines {
    padding: 0;
    top: 25%;
  }
  .projekt-container .projekt-gallery .row .column {
    flex: 50%;
    max-width: 50%;
  }
}
@media (max-width: 475px) {
  .projekt-container .projekt-gallery .row .column {
    flex: 100%;
    max-width: 100%;
  }
}