@import url(./settings.css);
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
  font-family: Neue-Montreal;
  src: url(./assets/fonts/neuemontreal.cqi9ibog.woff2) format("woff2");
}
:root {
  --primary: #111111;
  --secondary: #efefef;
  --primaryFont: LayGrotesk-M;
  --secondaryFont: LayGrotesk-SM;
  --thirdFont: Neue-Montreal;
}
* {
  user-select: none;
}
html,
body {
  color: var(--secondary);
  font-family: var(--thirdFont);
}
body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: transparent;
}
.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -1;
}
main {
  /* position: relative; */
  height: 100vh;
  width: 100%;
  padding: 4rem;
}
h1 {
  font-size: 6rem;
  text-transform: uppercase;
  font-family: var(--thirdFont);
  color: var(--primary);
}
h2 {
  font-size: 3.2rem;
  text-transform: uppercase;
  font-family: var(--thirdFont);
}
span {
  font-family: "Inter";
  font-size: 1.4rem;
}
p {
  font-family: var(--thirdFont);
  font-size: 2rem;
}
a {
  font-family: var(--thirdFont);
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
nav {
  border-top: 0.1rem solid #111111;
  border-bottom: 0.1rem solid #111111;
}
nav ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
nav ul a {
  font-size: 1.4rem;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  z-index: 9999;
  overflow: hidden;
}
.clips {
  color: black;
  position: relative;
  overflow: hidden;
  /* opacity: 0.4; */
}
.clips:nth-of-type(1) {
  background: #0f0f0f;
}
.clips:nth-of-type(2) {
  background: #121212;
}
.clips:nth-of-type(3) {
  background: #0c0c0c;
}
.clips:nth-of-type(4) {
  background: #1f1f1f;
}

.clips h2 {
  font-size: 5rem;
  font-family: var(--thirdFont);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .clips h2 {
    font-size: 3.2rem;
  }
  main {
    padding: 2rem;
  }
}
