@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Mulish:wght@200;300;400;500;600;700;800;900;1000&display=swap");

@font-face {
  font-family: "OpenSans";
  src: url("./fonts/OpenSans-VariableFont_wdth\wght.ttf") format("truetype");
}

html,
body {
  padding: 0;

  margin: 0;

  height: 100dvh;

  background-color: #181a1a;

  overflow-x: auto;

  color: white;
}

html ::selection {
  background-color: #00ff7b;

  color: #111827;
}

.main-body {
  display: flex;
  flex-direction: column;
  height: 120vh;
  box-sizing: border-box;
}

header {
  padding: 1em 0em;
  border-bottom: #3b434c solid 1px;

  position: sticky;

  height: 1.5rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

header h1 {
  font-size: 1.6rem;
  line-height: 2rem;
  margin: 0;

  margin-left: 0.5rem;
}

header input {
  margin-right: 2rem;

  padding: 0.4rem 0.7rem;
  width: 300px;

  background-color: transparent;
  color: white;
  border: none;
  border-bottom: solid #f8fafc 1px;

  outline: none;

  transition: all 50ms;
}

header input::placeholder {
  color: white;
  opacity: 0.8;
}

header input:focus {
  background-color: #fff2;
  border-color: #00ff7b;
  border-width: 2px;
}
@media (prefers-color-scheme: light) {
  body {
    background-color: #f8fafc;

    color: #111827;
  }

  html ::selection {
    color: #111827;
    background-color: #00ff7b;
  }

  header input {
    color: #111827;
    border-color: #111827;
  }

  header {
    border-color: #111827;
  }

  header input::placeholder {
    color: #111827;
    opacity: 0.8;
  }
}

.site-content {
  box-sizing: border-box;

  /* height: 1200px; */
  margin: 0 auto;
  width: 80%;
  max-width: 1600px;

  font-size: 1.1rem;
  font-weight: 400;
}

.site-content h2 {
  font-size: 1.3rem;

  cursor: auto;
  user-select: none;
}

.site-content h2 span {
  cursor: pointer;

  opacity: 0;
  font-weight: 700;

  transition: all 100ms;
}

.site-content h2:hover span {
  opacity: 1;
}

/* DEV */
/* DEV */
.development-only {
  position: fixed;
  width: 90%;

  box-sizing: border-box;

  top: 0;
}

.wrapper {
  box-sizing: border-box;

  /* width: 75%; */
  height: 100%;

  width: 100%;
  /* width: 1366px; */
  aspect-ratio: 16/9;
}

div.blur {
  backdrop-filter: blur(2px);
}
