html,
body {
  height: 100%;
}

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

body {
  background-color: hsl(212, 45%, 89%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
}

h1 {
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    font-size: 1.45rem;
}

p {
    color: hsl(216, 15%, 48%);
    font-size: 1.05rem;
}

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

.card {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  width: 320px;
  height: 499px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 20px;
  gap: 24px;
  padding: 16px 16px 40px 16px;
  text-align: center;
  box-shadow: 10px 10px 15px  rgba(0, 0, 0, 0.08);
}

img {
    display: block;
    max-width: 100%;
    border-radius: 10px;
    height: 95%;
}