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

@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");

/* Color Palette */

:root {
  --color-primary: #32ff88;
  --color-dark: #343f5c;
  --color-white: #fff;
  --color-black: #000000;
  --color-gray: #494949;

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

  --font-title: "Anton", sans-serif;
  --font-text: "Anton", sans-serif;
}

/* Main */

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-family: var(--font-text);
  background: var(--color-dark);
  color: var(--color-white);
  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);
  text-transform: uppercase;
}

h1 {
  font-size: 20vh;
  line-height: 100%;
  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;
}

h1 span,
h2 span,
h3 span,
h4 span {
  color: var(--color-primary);
}

video {
  clip-path: inset(1px);
}

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

.text {
  padding: 5%;
  box-sizing: border-box;
  height: 80vh;
  margin-top: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.text .btn {
  margin-top: 10vh;
}

.logo {
  max-height: 30px;
}

header {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  position: fixed;
  background: var(--color-white);
  z-index: 999;
}

header .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: 0px auto;
}

header .social::after {
  display: none;
}

header .social {
  width: 40px;
  height: 40px;
}
