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

*{
  margin: 0;
  padding: 0;
}

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

body{
  background-color: var(--Slate-300);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

img{
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
.conteiner{
  background-color: var(--White);
  padding: 20px;
  max-width: 270px;
  height: auto;
  border-radius: 10px;
}

.card{
  font-family: "Outfit", sans-serif;
  display: flex;
  flex-direction: column;
  text-align: center;
}

h1{
  color: var(--Slate-900);
  margin: 20px 0px 20px 0px;
  font-size: 24px;
}

p{
  margin: 10px 10px 30px 10px;
  font-size: 14px;
  color: var(--Slate-500);
}