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

body {
  background-color: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Georgia', serif;
}

.container {
  text-align: center;
}

.title {
  font-size: 8rem;
  color: #b22222;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-shadow:
    0 0 20px #ff0000,
    0 0 40px #b22222,
    0 0 80px #8b0000;
}
