* {
  --dark-blue: hsl(218, 44%, 22%);
  --white: hsl(0, 0%, 100%);
  --light-gray: hsl(212, 45%, 89%);
  --grayish-blue: hsl(220, 15%, 55%);
}

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

.container {
  height: 60vh;
  width: 18vw;
  background-color: var(--white);
  border-radius: 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.1rem 3rem 1.1rem;
}

img {
  border-radius: 5%;
  width: 100%;
  height: 100%;
}

p {
  font-family: "Outfit", sans-serif;
  text-align: center;
  margin: 1rem 1rem 0rem 1rem;
}

.p-1 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.p-2 {
  font-weight: 400;
  color: var(--grayish-blue);
}

@media screen and (max-width: 768px) {
  .container {
    width: 75vw;
    height: 65vh;
  }
}
