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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* .class */
/* #id */

body {
  width: 100%;
  height: 100vh;
  min-width: 300px;
  background-color: #d6e2f0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card {
  max-width: 335px;
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 0px 25px #0000002a;
}

.Top {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
}

.Top > img {
  width: 100%;
  height: 100%;
}

.Bottom {
  text-align: center;
  padding: 20px 10px;
  font-family: "Outfit", sans-serif;
}
.Bottom > h1 {
  font-size: 24px;
  color: hsl(218, 44%, 22%);
  margin-bottom: 15px;
}
.Bottom > p {
  color: hsl(220, 15%, 55%);
}
