@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

.inter-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 10vw;
  line-height: 7.55vw;
}

body {
  all: unset;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: #edf2f4;
  background-color: #151515;
  cursor: none;
}

.marko {
  color: #bdc7d9;
}

.iric {
  color: #d90429;
}

.heading .text {
  grid-area: text;
}

.heading .image {
  grid-area: image;
  background-color: #d90429;
}

.heading .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heading .image img::selection {
  background-color: #26fbd6a0;
}

.heading {
  height: 100svh;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "text image"
    "text image";
}

main {
  font-family: "Inter", sans-serif;
  min-height: calc(100svh - 2em);
  padding-block: 2em;
  max-width: 1000px;
  margin-inline: auto;
}

main h1 {
  color: #bdc7d9;
  text-decoration-color: #d90429;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-skip-ink: none;
  font-size: 3em;
}

main p {
  font-size: 2em;
}

.item {
  padding-left: 3em;
}

.item h3 {
  color: #bdc7d9;
  font-size: 2.25em;
  text-decoration-color: #d90429;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-skip-ink: none;
}

a {
  color: #d90429;
  cursor: none;
  text-decoration-color: #d90429;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-skip-ink: none;
}

.cursor {
  height: 30px;
  width: 30px;
  mix-blend-mode: difference;
  background-color: #bdc7d9;
  border-radius: 50%;
  transition: border-radius 150ms;
  display: inline-block;
  position: fixed;
  pointer-events: none;
  visibility: hidden;
}

@media screen and (max-width: 820px) {
  .heading {
    grid-template-areas:
      "text text"
      "image image";
  }

  .image {
    max-height: 50svh;
  }

  .inter-title {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 20vw;
    line-height: 15vw;
  }
}

::selection {
  background-color: #26fbd6;
  color: #423826;
}
