.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

:root {
  --slatetitle: hsl(218, 44%, 22%);
  --slatetext: hsl(216, 15%, 48%);
  --slatebackground: hsl(212, 45%, 89%);
}

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

body {
  background-color: var(--slatebackground);
  box-sizing: border-box;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.card-body {
  text-align: center;
  padding: 0px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  overflow-wrap: anywhere;
}

.card {
  padding: 16px 16px 40px 16px;
  border-radius: 20px;
  background-color: white;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  height: auto;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 24px;
  box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.05);
}

.card-image {
  border-radius: 10px;
  width: 288px;
  height: 288px;
}

.card-title {
  color: var(--slatetitle);
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
}

.card-text {
  color: var(--slatetext);
  font-size: 15px;
  line-height: 140%;
  letter-spacing: 0.2px;
}
