:root {
  --brand-primary-medium: #ec3a0e;
}

* {
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 68rem;
  margin: 0 auto;
  padding: 1rem;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ilustration {
  margin-bottom: 3rem;
  width: 25rem;
  height: 17rem;
  max-width: 100%;
}

.title {
  text-align: center;
  margin: 0;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
}

.accent {
  color: var(--brand-primary-medium);
}

.description {
  text-align: center;
  font-size: 1rem;
  line-height: 2rem;
  margin: 0;
}

@media (min-width: 768px) {
  .title {
    font-size: 2rem;
  }
  
  .description {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
