* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #d5e1ef;
}

.container {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card {
  width: 320px;
  height: 499px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background: #ffffff;
  border-radius: 20pt;
  padding: 0 0.7em;
}

.card img {
  height: 288px;
  width: 288px;
  align-self: center;
  border-radius: 1rem;
}

.card-text {
  padding: 0 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  margin: 0 0.7em;
  margin-bottom: 2.5em;
}

.card-text h1 {
  line-height: 120%;
  letter-spacing: 0px;
  font-size: 22px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #1f314f;
}
.card-text p {
  line-height: 140%;
  letter-spacing: 0.2px;
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #68778d;
}

.attribution {
  font-size: 12px;
  text-align: center;
  padding: 1.5em;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}

@media (max-width: 320px) {
  .card {
    width: 280px;
    height: 479px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background: #ffffff;
    border-radius: 20pt;
    padding: 0 0.1em;
  }

  .card img {
    height: 268px;
    width: 268px;
    align-self: center;
    border-radius: 1rem;
  }

  .card-text {
    padding: 0 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    margin: 0 0.7em;
    margin-bottom: 1.5em;
  }

  .card-text h1 {
    line-height: 120%;
    letter-spacing: 0px;
    font-size: 18px;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #1f314f;
  }
  .card-text p {
    line-height: 140%;
    letter-spacing: 0.2px;
    font-size: 12px;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #68778d;
  }
}
