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

/* Full-height for HTML and body */
html, body {
  height: 100%;
  width: 100%;
}

/* Set background and center content */
body {
  background-color: #ffffff;    /* White background */
  color: #333333;               /* Dark gray text for better readability */
  font-family: 'Roboto', sans-serif;
  min-height: 100vh;
  position: relative;
}

/* Main container styles */
#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Esto centra el contenido verticalmente */
  padding: 2rem;
}

/* Logo container styles */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  margin-top: 2rem;  /* Añadir espacio en la parte superior */
}

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

/* Contact button styles */
.contact-button {
  margin-top: 2rem;
  margin-bottom: 3rem;  /* Añadir espacio debajo del botón */
  padding: 0.8rem 1.5rem;
  background-color: #C2910B;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.contact-button:hover {
  background-color: #901608;
}

/* Footer styles */
footer {
  width: 100%;
  padding: 1.5rem;
  background-color: #f5f5f5;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .logo {
    max-width: 50%;
  }
  
  .contact-button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }
}

@media (min-width: 1024px) {
  .logo {
    max-width: 40%;
  }
}
@media (min-width: 1024px) {
  .logo {
    max-width: 40%;
  }
}
