body {
  margin: 0;
  padding: 0;
  background-color: #333; /* Dark gray background */
  font-family: sans-serif; /* Use a simple sans-serif font */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Set min-height for responsiveness */
}

.company-name {
  font-size: 2.5em; /* Relative font size based on root font size */
  color: #fff; /* White text */
  text-align: center;
  max-width: 80%; /* Limit width for better scaling */
  line-height: 1.5; /* Adjust line height for readability */
}

@media (max-width: 768px) {
  .company-name {
    font-size: 1.8em; /* Adjust font size for smaller screens */
  }
}

@media (max-width: 480px) {
  .company-name {
    font-size: 1.5em; /* Further adjust font size for very small screens */
  }
}
