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

:root {
  --black: #0e0e0e;
  --purple: #8a1e61;
  --purple-light: #8a206133;
  --purple-hover: #74134e;
  --white: #ffffff;
  --white-grey: #eff2f4;
  --grey: #939393;
  --yellow: #ffa800;
  --green: #008000b9;
  --green-hover: #008000cf;
}

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

html {
  scroll-behavior: smooth;
}

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

/* SECTION */

.section {
  min-height: 100vh;
}

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

/* MARGIN */
.mb-1x {
  margin-bottom: 1rem;
}
.mt-1x {
  margin-top: 1rem;
}
.mb-2x {
  margin-bottom: 2rem;
}
.mt-2x {
  margin-top: 2rem;
}
/* COLOR */
.clr-primary {
  color: var(--purple);
}
/* fw-600 */
.fw-600 {
  font-weight: 600;
}
/* BUTTON */
.btn {
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 600;
}
.btn-primary {
  color: white;
  background-color: var(--purple);
  transition: all 5ms ease-in-out;
}
.btn-primary:hover {
  background-color: var(--purple-hover);
}
.btn-secondary {
  color: var(--purple);
  border: 1px solid var(--purple);
  background-color: #00000000;
  transition: all 100ms ease-in-out;
}
.btn-secondary:hover {
  color: white;
  background-color: var(--purple-hover);
}
/* HEADING */

h1 {
  font-size: 4rem;
  font-weight: 700;
}

h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

h3 {
  font-size: 2.5rem;
  font-weight: 700;
}

h4 {
  font-size: 2rem;
  font-weight: 600;
}
h5 {
  font-size: 1.5rem;
  font-weight: 600;
}
h6 {
  font-size: 1rem;
  font-weight: 600;
}
/* TEXT */
p {
  font-size: 1rem;
  font-weight: 400;
}
/* SECTION  */
.section-100vh {
  min-height: 100vh;
}
@media screen and (max-width: 700px) and (min-width: 550px) {
  h1 {
    font-size: 2.7rem;
  }
  h3 {
    font-size: 2rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 1300px) and (min-width: 750px) {
  h1 {
    font-size: 3rem;
    font-weight: 700;
  }

  h2 {
    font-size: 2.8rem;
    font-weight: 700;
  }

  h3 {
    font-size: 2.2rem;
    font-weight: 700;
  }

  h4 {
    font-size: 2rem;
    font-weight: 600;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 0.7rem;
    font-weight: 600;
  }
  p {
    font-size: 0.8rem;
    font-weight: 400;
  }
}

@media screen and (max-width: 500px) {
  h1 {
    font-size: 2.4rem;
    line-height: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
    line-height: 2.5rem;
    line-height: 1.8rem;
  }
  h3 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  p {
    font-size: 0.7rem;
    font-weight: 400;
  }
}
