* {
  font-family: "Outfit", arial, serif;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: hsl(212, 45%, 89%);
}

.container {
  background-color: white;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  border-radius: 20px;
  width: 337px;
  overflow: hidden;
  box-shadow: 0px 0px 3px grey;
}

img {
  border-radius: 20px;
  margin-top: 15px;
  margin-left: 15px;
  margin-right: 15px;
}

.text {
  margin-left: 15px;
  margin-right: 15px;
  width: fit-content;
}

.headtitle {
  font-size: 25px;
  font-weight: 700;
  color: hsl(218, 44%, 22%);
}

.subtitle {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
  color: hsl(216, 15%, 48%);
}

.attribution {
  font-size: 11px;
  text-align: center;
  padding-bottom: 10px;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

@media (max-width: 375px) {
  body {
    margin: 10px;
  }
  .headtitle {
    font-size: 23px;
  }
  .subtitle {
    font-size: 15px;
    padding: 0px 10px 0px 10px;
  }
}
