:root {
  --white: hsl(0, 0%, 100%);
  --slate-300: hsl(212, 45%, 89%);
  --slate-500: hsl(216, 15%, 48%);
  --slate-900: hsl(218, 44%, 22%);
}

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

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  font-size: 1.5rem;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  background-color: var(--slate-300);
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1 {
  position: absolute;
  top: -5rem;
}

.main {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.card {
  width: 32rem;
  background-color: var(--white);
  padding: 1.6rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.card__header__image-container {
  width: 28.8rem;
  height: 28.8rem;
}
.card__header__image {
  border-radius: 1rem;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.card__body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-bottom: 2.5rem;
}
.card__body__heading {
  color: var(--slate-900);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.card__body__description {
  color: var(--slate-500);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin: 0 1.2rem;
}

.footer {
  width: 100%;
  padding: 2rem;
  font-size: 1.1rem;
}
.footer__attribution {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.footer__attribution a {
  color: hsl(228, 45%, 44%);
}

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