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

body {
  font-family: 'Inter', sans-serif;
  background-color: #efefef;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 700px;
  padding: 40px 20px;
}

.title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}

.divider {
  width: 30px;
  height: 2px;
  background: #000;
  margin: 0 auto 24px auto;
}

.subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #555;
}

@media (max-width: 600px) {
  .title {
    font-size: 32px;
  }

  .subtitle {
    font-size: 16px;
  }
}
