* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  max-zoom: 1;
  zoom: normal!important;
  min-zoom: 1;
  scroll-behavior: smooth;
  z-index: 999;
}

:root {
  //Solid Colors
  --gray-solid: #1a1a1f;
  --white-solid: #ffffff;

  --red-primary: #f20544;
  --red-secondary: #bf0436;
  --red-tertiary: #730217;

  //Gradient Colors
  --white-gradient: #ffffff8d;
}

@media (max-width: 1080px) {
  html {
    font-size: 93.75%;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 87.5%;
  }
}

body {
  background-color: var(--white-solid);
}

body,
input,
textarea,
button,
select,
option {
  font: 500 1rem "Poppins", sans-serif;
  color: var(--white-solid);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--white-solid);
}

h1 {
  letter-spacing: -1px;
  font-size: 2rem;
}

h2 {
  letter-spacing: -1px;
  font-size: 1.5rem;
}

button {
  outline: none;
  border: none;
}

a {
  outline: none;
  border: none;
}

p,
h1,
h2,
h3,
h4,
h5,
span,
label {
  font-family: "Poppins", sans-serif;
}
