@import url("https://fonts.googleapis.com/css2?family=Reddit+Sans:wght@400;700&family=Sora:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Sora", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  box-sizing: border-box;

  cursor: url("../assets/cursor.png"), auto !important;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  background-color: #0f0f0f;
}

a,
button,
.clickable,
.button {
  cursor: url("../assets/cursor-clicked.png"), pointer !important;
}

:root {
  --width: 1200px;
  --margin-width: calc((100% - var(--width)) / 2);

  --color-invert: #1b1b1b;
  --color-invert-rgb: 27, 27, 27;
  --color-text: #f7f7f7;
  --color-text-rgb: 247, 247, 247;
  --color-primary: #7f1437;
  --color-primary-rgb: 127, 20, 55;
  --color-secondary: #c72b40;
  --color-secondary-rgb: 199, 43, 64;
  --color-tertiary: #ee4540;
  --color-tertiary-rgb: 238, 69, 64;
}

@media screen and (max-width: 1200px) {
  :root {
    --width: 100%;
  }
}

@media screen and (max-width: 600px) {
  :root {
    font-size: 14px;
  }
}

.scroller {
  min-height: 1100vh;
}

@media screen and (max-height: 800px) and (min-width: 800px) {
  .about-content > *,
  .projects-content > * {
    zoom: 0.9 !important;
  }
}

@media screen and (max-width: 480px) {
  * {
    max-width: 100%;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Reddit Sans", Arial, sans-serif;
  font-weight: 700;
}
