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

:root {
  --White: hsl(0, 0%, 100%);
  --Slate-300: hsl(212, 45%, 89%);
  --Slate-500: hsl(216, 15%, 48%);
  --Slate-900: hsl(218, 44%, 22%);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  max-width: 1440px;
  background-color: var(--Slate-300);
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  font-family: "Outfit", sans-serif;
  margin: 0 auto;
}
.main {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.card {
  width: 100%;
  max-width: 300px;
  padding: 15px;
  background-color: var(--White);
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 0 30px var(--Slate-500);
}

.img {
  width: 100%;
}

img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.text {
  width: 100%;
  padding: 0 20px;
}

h2 {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
p {
  text-align: center;
  font-weight: 400;
  color: var(--Slate-500);
  margin-bottom: 20px;
}
