* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(212, 45%, 89%);
  font-family: "outfit", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

div {
  width: 300px;
  height: 450px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 2px 20px #888;
}

img {
  margin: 10px;
  border-radius: 10px;
}

h1 {
  font-size: 1.3rem;
  margin: 0 22px 15px;
  text-align: center;
}

p {
  font-size: 1rem;
  text-align: center;
  color: #999;
  margin: 0 22px;
}
