/* styles.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  padding: 2rem;
}

.logo {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.logo-corona {
  max-width: 60px;
  height: auto;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

.fechas {
  margin: 0.5rem 0 2rem;
  font-size: 1rem;
  color: #444;
}

.mensaje {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.email {
  margin-top: 0.5rem;
}

.email a {
  color: #e40856;
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.email a:hover {
  background-color: #e40856;
  color: #ffffff;
}