/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
  color: var(--text-default);
}

body {
  overflow-x: hidden;
  background: #001411;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--text-bright);
}

h2 {
  text-align: left;
  font-size: 28px;
}

.heading {
  font-size: 48px;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--text-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .container:first-child {
    padding: 0 15px;
  }
  h1 {
    font-size: 32px;
  }
  h2,
  .heading {
    font-size: 32px;
    line-height: normal;
  }
  h3 {
    font-size: 24px;
  }
}
