:root {
  --white: hsl(0, 0%, 100%);
  --light-gray: hsl(212, 45%, 89%);
  --grayish-blue: hsl(220, 15%, 55%);
  --dark-blue: hsl(218, 44%, 22%);
}
* {
  font-family: Outfit;
  box-sizing: border-box;
}
body {
  background-color: var(--light-gray);
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
img {
  width: 270px;
  aspect-ratio: 1/1;
  border-radius: 1rem;
}
.second-layer {
  width: fit-content;
  padding: 1rem 1rem;
  background-color: var(--white);
  border-radius: 1rem;
  max-width: 300px;
  box-shadow: 0.5px 2px 20px 1px color(--white);
}
h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}
p {
  text-align: center;
  font-weight: 400;
}
