:root {
  --bg: #0f0f0f;
  --text: #a5a4a5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background: var(--bg);
  width: 100vw;
  height: 100vh;
  color: var(--text);
  overflow: hidden;
  font-family: "Inter";
}


.bubbles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 760px;
  background: url(./bubbles.png) no-repeat 50% 50%;
  background-size: cover;
  mix-blend-mode: difference;
  transform-origin: center;
}

.hero .header .row .h1-revealer {
  position: absolute;
  top: 95%;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg);
}

.pre-loader {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 2;
}

.preloader-wrapper {
  position: relative;
  width: 5px;
  height: 100px;
  background: rgb(240, 240, 240, 0.25);
  overflow: hidden;
  transform: rotate(40deg);
}

.preloader {
  position: absolute;
  top: 0;
  width: 120%;
  height: 120%;
  background: var(--bg);
}

a {
  text-decoration: none;
  color: var(--text);
}

/* logo */
.logo {
  position: fixed;
  margin: 2rem;
}

.logo a {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
}

/* contact */
.contact {
  position: fixed;
  right: 0;
  margin: 2rem;
}

.contact a {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
}

nav {
  position: fixed;
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: space-between;
}

nav p {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.container h1 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}

.loader .img {
  position: absolute;
  width: 100vw;
  height: 100vh;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #0f0f0f;
  color: #fff;
  display: flex;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}

.col {
  width: 50%;
  padding: 1em;
}

h1 {
  font-family: "Schabo";
  font-size: 100px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  color: gray;
}

h2 span {
  color: #fff;
}

/* hero */
.hero {
  width: 100vw;
  height: 100vh;
  display: flex;
}

.hero > div {
  display: flex;
  flex-direction: column;
  padding: 10rem 5rem 5rem 0px;
}

.header {
  flex: 3;
  overflow: visible;
}

.copy {
  flex: 2;
}

/* header */
.hero .header .row {
  margin-bottom: 30px; /* Add the desired space (in pixels) between rows */
  position: relative;
}

.hero .header .row h1 {
  position: relative;
}

.bubbles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 760px;
  background: url(./bubbles.png) no-repeat 50% 50%;
  background-size: cover;
  mix-blend-mode: difference;
  transform-origin: center;
}

.message {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 1rem;
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
}

.content__text {
  font-size: 10vw;
}

.js .content__text-inner {
  opacity: 0;
}

@media screen and (min-width: 53em) {
  .message {
    display: none;
  }
}

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

  h1 {
    font-size: 60px;
  }

  .h1-revealer,
  .p-revealer,
  .logo-revealer,
  .contact-revealer {
    display: none;
  }

  .hero > div {
    padding: 8rem 4rem 2rem 2rem;
  }
}