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

body {
  background-color: hsl(212, 45%, 89%);
}

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

.card {
    width: 320px;
    background-color: hsl(0, 0%, 100%);
    padding: 16px;
    padding-bottom: 40px;
    border-radius: 20px;
}

.card > img {
    border-radius: 10px;
    margin-bottom: 24px;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0px;
    /* font-weight: 700; */
    color: hsl(218, 44%, 22%);
    text-align: center;
    margin-bottom: 16px;
}

.card-description {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
    color: hsl(216, 15%, 48%);
    text-align: center;
    /* font-weight: 400; */
}