@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap");

* {
  margin: 0;
  line-height: calc(1em + 0.5rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--clr-white);
  color: var(--clr-black);
  /* margin-bottom: 5000px; */
}

.main__container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 2rem;
}

.text__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  gap: 0.3rem;
}

h2,
p {
  margin: 0rem;
  color: #000;
}

.text__container h2 {
  font-size: 2.2rem;
  font-weight: 400;
}

.text__container p {
  color: #4361ee;
  font-size: 1.2rem;
  font-weight: 500;
}

.main__container .img {
  width: 375px;
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {
  .text__container h2 {
    font-size: 3rem;
  }

  .main__container .img {
    width: 400px;
  }
}

/* lg */
@media (min-width: 1024px) {
  .text__container {
    gap: 0.5rem;
  }
  .text__container h2 {
    font-size: 3.25rem;
    font-weight: 400;
  }

  .text__container p {
    color: #4361ee;
    font-size: 1.2rem;
    font-weight: 500;
  }

  .main__container .img {
    width: 500px;
  }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */
