@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --black: #1c1c1c;
  --purple: #8a2061;
  --purple-light: #8a206133;
  --purple-hover: #74134e;
  --white: #fafafa;
  --grey: #5f5f5f;
  --yellow: #ffa800;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  color: var(--black);
  background-color: var(--white);
}

/* CONTAINER */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* TEXTS */

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: var(--black);
  font-weight: 600;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2rem;
}
h5 {
  font-size: 1.2rem;
}
h6 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
}
/* MARGINS */
.mt-1x {
  margin-top: 1rem;
}
.mb-1x {
  margin-bottom: 1rem;
}
.m-1x {
  margin: 1rem;
}
/* BUTTON */

.btn {
  display: inline-block;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
}

/* Primary button -Purple */
.btn-primary {
  background-color: var(--purple);
  color: var(--white);
  transition: all 100ms ease-in-out;
}
.btn-primary:hover {
  background-color: var(--purple-hover);
}

.btn-secondary {
  background-color: #00000000;
  color: var(--purple);
  transition: all 100ms ease-in-out;
  border: 3px solid var(--purple);
  cursor: pointer;
}
.btn-secondary:hover {
  color: var(--white);
  background-color: var(--purple);
}

/* Colors */
.font-color-purple {
  color: #74134e;
}

@media screen and (max-width: 450px) {
  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 2.5rem;
  }

  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.2rem;
  }
  h6 {
    font-size: 1rem;
  }
  p {
    font-size: 0.8rem;
  }

  .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1150px) and (min-width: 500px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  h3 {
    font-size: 2.5rem;
  }

  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  h6 {
    font-size: 1rem;
  }
  p {
    font-size: 0.8rem;
  }
}
