*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: hsl(212, 45%, 89%);
}

main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  margin: 15px 20px 20px;
  color: hsl(220, 15%, 55%);
}

h1 {
  margin: 20px 12px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: hsl(218, 44%, 22%);
}

img {
  width: 280px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

img:hover {
  transform: scale(101%);
}

.card-container{
  border-radius: 20px;
  background-color: #fff;
  padding:15px;
  margin: 150px auto;
  text-align: center;
  width: 315px;
  box-shadow: 0 10px 20px hsl(212, 35%, 80%);;
}
