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

:root {
  font-size: 62.5%;
  --inter-font: "Inter", sans-serif;
  --space-font: "Space Grotesk", sans-serif;
  --secondary-background: #17171a;
  --primary-background: #121214;
  --bg-input: #202024;
  --border-input: #252529;
  --white: #fff;
  --text-color: #afabb6;
  --highlight: #e07b67;
}

body {
  font-size: 1.6rem;
  font-family: var(--inter-font);
  background-color: var(--primary-background);
}

header {
  width: 100%;
  height: 21rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  background-color: var(--secondary-background);
}
header > h1 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 500;
}
header > h1 > span {
  color: var(--highlight);
}
@media (min-width: 768px) {
  header > h1 {
    font-size: 4rem;
  }
}
header input {
  width: 80%;
  height: 5rem;
  font-family: var(--inter-font);
  font-weight: 500;
  font-size: 1.4rem;
  background-color: var(--bg-input);
  color: var(--text-color);
  border: 2px solid var(--border-input);
  border-radius: 0.8rem;
  padding: 1.6rem 2.4rem 1.6rem 2.4rem;
}

@media (min-width: 768px) {
  header input {
    font-size: 2rem;
  }
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  height: 100vh;
  padding: 2.4rem 4rem 2.4rem 4rem;
}

.card {
  height: fit-content;
  max-width: 121.6rem;

  background-color: var(--secondary-background);
  border-radius: 0.8rem;
  border: 2px solid var(--border-input);
  padding: 2.4rem 3.2rem 2.4rem 3.2rem;
  transition: all 0.4s;

  > .card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;

    > span {
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--highlight);
    }

    > i #icon {
      fill: #17171a;
      stroke: #e07b67;
      stroke-width: 7;
      transition: fill 0.3s;
      cursor: pointer;
    }

    > i #icon.filled,
    i #icon:hover {
      fill: #e07b67;
    }
  }

  > .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;

    > .title {
      font-family: var(--space-font);
      font-size: 2rem;
      font-weight: 500;
      color: var(--white);
    }

    > .text {
      font-size: 1.4rem;
      line-height: 2.24rem;
      color: var(--text-color);
    }
  }
}

.card:hover {
  border: 2px solid var(--highlight);
}

/*# sourceMappingURL=style.css.map */
