* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}
body {
  background-color: hsl(212, 45%, 89%);
}
.container {
  background-color: white;
  width: 375px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  margin: 40px auto 30px;
  text-align: center;
}
.container img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.txts h1 {
  font-size: 27px;
  margin-top: 25px;
  line-height: 40px;
}
.txts p {
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 19px;
}
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

@media screen and (max-width: 380px) {
  .container {
    width: 350px;
  }
}
