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

/* Set body and html height and background color */
html, body {
  height: 100%;
  background-color: #000000; /* Light gray */
  font-family: Arial, sans-serif;
}

/* Center container vertically and horizontally */
.landing-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

/* Main Title Styling */
.main-title {
  font-size: 96px;
  font-weight: bold;
}

.scorebug {
  color: orange;
  font-size: 96px;
}

.dotapp {
  color: #007bff; /* Blue */
  font-size: 64px;
  vertical-align: middle;
}

/* Subtitle styling */
.subtitle {
  margin-top: 20px;
  font-size: 36px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(128, 128, 128, 0.7);
}
