/* ==========================================================================
   General Styles
   ========================================================================== */

@import url("https://use.typekit.net/cst5jvh.css");

/* Color Palette */

:root {
  --color-primary: #c1ff00;
  --color-dark: #0a1b01;
  --color-white: #fff;
  --color-black: #000000;
  --color-gray: #494949;

  --color-messageError: #ffc4c4;
  --color-messageSuccess: #00fff5;
  --color-fieldError: #eb5757;

  --font-title: "richmond-display", sans-serif;
  --font-text: "Inter", sans-serif;
}

/* Main */

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-family: var(--font-text);
  background: var(--color-white);
  color: var(--color-black);
  margin: 0;
}

.main {
  overflow-x: hidden;
}

body {
  width: 100%;
}

/* Titles */
h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-weight: 500;
  font-family: var(--font-title);
}

h1 {
  font-size: 72px;
  margin-bottom: 20px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 42px;
}

h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

p {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 1px;
  margin-top: 0px;
}

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

.text {
  padding: 5%;
  box-sizing: border-box;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo {
  max-width: 100px;
}
