/*@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
  box-sizing: border-box;
  margin: 0;
}

body{
  font-family: "Outfit", serif;
  font-weight: 400;
  background-color: hsl(212, 45%, 89%);
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.container{
  background-color:hsl(0, 0%, 100%) ;
  max-width: 360px;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 30px hsla(0, 0%, 0%, 0.2);
  
}

img{
  width: 100%;
  border-radius: 0.75rem;
}

.text-div{
  text-align: center;
  padding: 1.5rem 1.25rem;
}
/*i should use class in css-selector but i'm using h2 and p selectors instead because its a very small project */
h2{
  margin-bottom: 1rem;
  color: hsl(218, 44%, 22%);
}

p{
  color:hsl(216, 15%, 48%);
}