:root {
  --bg-color: #000;
  --text-color: #fff;
  --primary-font: 'Antonio', sans-serif;
  --accent-font: 'Nothing You Could Do', cursive;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--primary-font);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.logo {
  width: 300px;
  max-width: 80%;
  height: auto;
}

.text-container {
  margin-top: 1rem;
}

.main-text,
.sub-text {
  font-family: var(--primary-font);
}

.main-text {
  font-size: 3rem;
}

.sub-text {
  font-size: 1.8rem;
  margin-top: 0.5rem;
}

.footer-text {
  font-family: var(--accent-font);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}
