@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");

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

/* General Styling */
body {
  font-family: "Outfit", sans-serif;
  background-color: hsl(212, 45%, 89%);
}

.container {
  min-height: calc(100vh - 50px);

  display: flex;
  align-items: center;
  justify-content: center;
}

.border-radius {
  border-radius: 15px;
}

/* Card */
.card {
  background-color: hsl(0, 0%, 100%);
  width: 300px;
  padding: 15px;
}

.card-img {
  width: 100%;
}

.card p {
  text-align: center;
  margin: 20px 0;
}

.card-text {
  color: hsl(218, 44%, 22%);
  font-weight: 700;
  font-size: 1.4rem;
}

.card-subtext {
  color: hsl(220, 15%, 55%);
  font-size: 1rem;
}

/* Attribution */
.attribution {
  height: 50px;
  font-size: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
