:root {
  --white: hsl(0, 0%, 100%);
  --light-slate: hsl(212, 45%, 89%);
  --slate: hsl(216, 15%, 48%);
  --dark-slate: hsl(218, 44%, 22%);
}

html {
  background-color: var(--light-slate);
}

body {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.content-container {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  width: 75vw;
  max-width: 18rem;
  padding: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  border-radius: 15px;
  line-height: 1.4;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.075);
}

.image-container img {
  width: 100%;
  border-radius: 15px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem;
  line-height: 1.5;
}

.content h2 {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark-slate);
  text-align: center;
  line-height: 1.3;
}

.content p {
  color: var(--slate);
  text-align: center;
}

/* Tablet */
@media (min-width: 768px) {
}

/* Desktop */
@media (min-width: 992px) {
}
