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

  --font-main: "Outfit", sans-serif;

  --space-small: 12px;
  --space-medium: 16px;
  --space-large: 24px;
  --space-xl: 32px;
}

body {
  font-family: var(--font-main);

  background-color: var(--slate-300);

  min-height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 20px;
}

.container {
  width: 100%;

  display: flex;

  justify-content: center;

  align-items: center;
}

.card {
  background: var(--white);

  width: 100%;

  max-width: 320px;

  padding: 16px;

  border-radius: 20px;

  text-align: center;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;

  display: block;

  border-radius: 12px;
}

.content {
  margin-top: 24px;
}

.content h1 {
  color: var(--slate-900);

  font-size: 22px;

  font-weight: 700;

  line-height: 1.3;

  margin-bottom: 16px;
}

.content p {
  color: var(--slate-500);

  font-size: 15px;

  line-height: 1.5;

  padding: 0 10px;
}

@media (min-width: 768px) {
  .card {
    max-width: 340px;
  }
}

@media (min-width: 1440px) {
  body {
    padding: 40px;
  }
}
