:root {
  --color-primary: #ffa500;

  --color-bg-1: #ffffff;
  --color-bg-2: #151515;

  --color-text-1: #ffffff;
  --color-text-2: #151515;
  --color-text-3: #4f4d4d;
  --color-text-4: #666666;

  --color-stroke-2: #ececec;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Oswald', sans-serif;
  color: var(--color-text-3);
  font-weight: 400;
  line-height: 1;
  overflow-x: hidden;
  min-height: 100vh;
  letter-spacing: -2%;
  font-size: 1.6rem;
}

a {
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style: none;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
textarea,
button,
select {
  font: inherit;
}

/* ////////////////////////////////////////////// */
.container {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}
.text-white {
  color: var(--color-text-1) !important;
}
.text-primary {
  color: var(--color-primary);
}
.text-medium {
  font-weight: 500;
}

.heading-2 {
  font-weight: 600;
  font-size: 5.6rem;
}

.heading-3 {
  font-size: 4rem;
  font-weight: 600;
}

.heading-5 {
  font-size: 2.4rem;
  font-weight: 600;
}

/* ////////////////////////////////////////////// */
/* Buttons */
.btn {
  display: inline-block;
  padding: 1.6rem 3.2rem;
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border-radius: 3.9rem;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px 0px #000;
  color: var(--color-text-1);
  text-transform: capitalize;
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px 0px #000;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  background-color: #e59400;
}
.btn--white {
  box-shadow: 3px 3px 0px 0px var(--color-stroke-2);
}
