* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: black;
  color: white;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}
.main-text {
  font-size: 5rem;
  font-weight: 700;
}
.sub-text {
  font-size: 1.67rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  margin-top: 10px;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
}