* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --text-title-size: 3.75rem;
  --text-paragraph-size: 1.5rem;
}

body {
  height: 100vh;
  height: 100dvh;
  background-color: white;
  padding: 1rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  --grid-size: 1.5rem;
  background-size: var(--grid-size) var(--grid-size);
  background-image: radial-gradient(circle, black 1px, transparent 1px);
}

main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 2rem;

  & h1 {
    font-size: var(--text-title-size);
    font-weight: 700;
  }

  & p {
    font-size: var(--text-paragraph-size);
    line-height: 2rem;
  }
}

.sad-bot {
  max-width: 32rem;

  & img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1024px) {
  main {
    flex-direction: column;
  }

  .content {
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --text-title-size: 2.5rem;
    --text-paragraph-size: 1.25rem;
  }

  .content {
    gap: 0.5rem;
  }

  .sad-bot {
    max-width: 24rem;
  }
}
