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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: hsl(212, 45%, 89%);
  min-height: 100vh;
  display: grid;
  place-items: center;
}

#container {
  background-color: hsl(0, 0%, 100%);
  padding: 5px;
  height: 500px;
  position: relative;
  width: 300px; 
  text-align: center; 
  border-radius: 15px;
  box-shadow: 2px 2px 30px rgb(203, 203, 203);
}

#container img {
  width: 95%;
  padding-top: 10px;
  border-radius: 10px;
}

#container h1 {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 2pxpx;
  padding: 20px 10px 5px 10px;
}

#container p {
  font-size: 15px;
  color:hsl(220, 15%, 55%);
  padding: 10px 20px;
}
