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

* {
  margin: 0;
  padding: 0;
}

body {
  font-size: 0.94em;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  background-color: var(--slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

main {
  margin: auto;
  text-align: center;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--slate-900);
}

h1 {
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 20px;
}

p {
  color: var(--slate-500);
  margin-bottom: 40px;
}

img {
  border-radius: 15px;
  max-width: 100%;
  height: auto;
}
