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

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

div {
  background-color: white;
  width: 400px;
  height: 80vh;
  margin: 3% auto;
  text-align: center;
  padding-top: 30px;
  border-radius: 20px;
}

img {
  width: 350px;
  border-radius: 20px;
}

h1 {
  color: hsl(218, 44%, 22%);
}

p {
  color: hsl(216, 15%, 48%);
}

@media screen and (max-width: 375px) {
  div {
    margin: 23% auto;
    height: 76vh;
    width: 326px;
    text-align: center;
  }
  img {
    width: 290px;
  }
  h1 {
    margin-left: 10px;
    margin-right: 10px;
  }
}
