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

html {
  font-family: "Outfit";
}
body {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: hsl(212, 45%, 89%);
}

.container {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: hsl(0, 0%, 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-top: 5%;
  border-radius: 20px;
  margin-bottom: 20px;
}

img {
  width: 90%;
  margin-top: 15px;
  border-radius: 10px;
  height: auto;
}

h1 {
  font-size: 24px;
  margin-right: 30px;
  margin-left: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: hsl(218, 44%, 22%);
}
p {
  font-size: 15px;
  margin-right: 60px;
  margin-left: 60px;
  margin-top: 20px;
  margin-bottom: 40px;
  color: hsl(220, 15%, 55%);
}

@media (max-width: 500px) {
  body{
    max-width: 500px;
  }

  .container{
    width: 90%;
  }
}
