@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: "Outfit";
}
:root {
  --background-body: hsl(212, 45%, 89%);
  --background-card: hsl(0, 0%, 100%);
  --main-text: hsl(218, 44%, 22%);
  --second-text: hsl(216, 15%, 48%);
}
body {
  background-color: var(--background-body);
  height: 100vh;
  display: grid;
  justify-content: center;
  align-content: center;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px;
}
img {
  display: block;
  max-width: 100%;
}

.card-container {
  background-color: var(--background-card);
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 15px;
  padding-bottom: 40px;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0px 2px 5px hsla(218, 44%, 22%, 0.2);
}
.card-banner {
  border-radius: 0.8rem;
  overflow: hidden;
}
.card-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 20px;
}
.main-text {
  color: var(--main-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 140%;
  width: 17ch;
  text-align: center;
}
.second-text {
  color: var(--second-text);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  line-height: 140%;
  width: 26ch;
}
