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

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

.container {
  background: url("images/logo.png") no-repeat center center fixed;
  background-size: contain; /* Ajusta según el tamaño del logo */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  color: #333;
}

.content {
  background-color: rgba(255, 255, 255, 0.8); /* Fondo semitransparente para destacar el texto */
  padding: 20px;
  border-radius: 8px;
    margin-top: 300px; /* Ajusta este valor para mover el texto hacia abajo */
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #555;
}

