:root {
  --main-bg-color: #000000;
}

@font-face {
  font-family: ModernPrometheus;
  src: url('font/ModernPrometheus.woff2') format('woff2'), 
    url('font/ModernPrometheus.woff') format('woff');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "ModernPrometheus", sans-serif;
  text-decoration: none;
  list-style: none;
}

::-webkit-scrollbar {
  display: none;
}

html,
body {
  width: 100%;
  background-color: var(--main-bg-color);
  overscroll-behavior: none;
  font-size: 100px; 
  line-height: 1;
}

p {
  word-break: break-all;
  white-space: normal;
  text-align: center;
}

#fullscreen, img{
  
  padding-left: 25px;
  padding-right: 25px; 
  width: 100%;
  height: 100%;
  z-index: 5;
}

.header {
  position: fixed;
  top: 2%;
  left: 2%;
  width: 100%;
  z-index: 2;
  mix-blend-mode: difference;
  color: #ffffff;
  text-transform: uppercase;
}

.wrap {
  position: relative;
  display: block;
  line-height: auto;
  overflow: hidden;
  transition: 0.5s;
  will-change: transform;
}

.wrap h1,
.wrap .img {
  transform: translateY(100%);
  transition: 0.5s;
  will-change: transform;
}

.wrap.active h1,
.wrap.active .img {
  transform: translateY(0);
}

main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.scrollable {
  position: absolute; 
  width: 100%;
  top: 0;
  left: 0;
  will-change: transform;
}

.content {
  position: relative; 
  width: 100%;
}

section {
  position: relative;
  height: 50vh;
}

.img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(20%) sepia(20%);
  z-index: 3;
}
