:root {
  --white: hsl(0, 100%, 100%);
  --purple100: hsl(275, 100%, 97%);
  --purple600: hsl(292, 16%, 49%);
  --purple950: hsl(292, 42%, 14%);
}

@font-face {
  font-family: "WorkSans";
  src: url(../fonts/static/WorkSans-Regular.ttf);
}

@font-face {
  font-family: "WorkSansBold";
  src: url(../fonts/static/WorkSans-Bold.ttf);
}

@font-face {
  font-family: "WorkSansSemiBold";
  src: url(../fonts/static/WorkSans-Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "WorkSans";
}

html {
  font-size: 10px;
}

.hero {
  background-image: url(../images/background-pattern-desktop.svg);
  background-position: center -10.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--purple100);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background-color: var(--white);
  max-width: 60rem;
  padding: 4rem;
  border-radius: 14px;
  margin: 0 2rem;
}

.tittle {
  font-family: "WorkSansBold";
  font-size: 6rem;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 6.5rem;
  margin-bottom: 2rem;
  color: var(--purple950);
}

.tittle::before {
  content: "";
  background-image: url(../images/icon-star.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 4rem;
  height: 4rem;
  left: -6.5rem;
}

.question {
  border-bottom: 1px solid var(--purple100);
  position: relative;
}

.question:last-child {
  border-bottom: none;
}

.question .button {
  position: absolute;
  right: -0.5rem;
  top: -0.5rem;
}

.question h3 {
  color: var(--purple950);
  font-family: "WorkSansSemiBold";
  margin: 2.5rem 0;
  margin-right: 4rem;
  font-size: 1.8rem;
}

.question p {
  color: var(--purple600);
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
}