/* Reset default margin and padding */
body, h1, p {
  margin: 0;
  padding: 0;
  background-color:#fff0e5;
}

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

/* Style for the main heading */
h1 {
  font-size: 28px;
  margin-top: 20px;
}

/* Style for the company description */
p {
  font-size: 18px;
  margin: 10px 0;
}

/* Style for the email link */
a {
  color: #007bff;
  text-decoration: none;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }
}