body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #2f00a8, #0099ff);
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-screen {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
  width: 400px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  color: white;
}

.main-logo {
  width: 250px;
}

.sub-logo {
  width: 150px;
  margin: 10px 0;
}

.slogan {
  font-size: 18px;
  margin: 20px 0 30px;
  font-weight: bold;
}

.button-group {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 15px;
}

.button-group button {
  background: #00e0c6;
  color: #000;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-group button img {
  width: 40px;
  height: auto;
  margin-bottom: 5px;
}

.button-group button:hover {
  background: #00bfa5;
  color: #fff;
}

.elije {
  font-size: 16px;
  margin-top: 10px;
}
@keyframes latido {
  0%, 100% { transform: scale(1);}
  50% { transform: scale(1.07);}
}

.sub-logo {
  width: 200px;
  margin: 10px 0;
  animation: latido 2s infinite;
}
.creado-genered {
  font-family: 'Century Gothic', 'Segoe UI', Arial, sans-serif;
  font-size: 13px;
  margin-top: 18px;
  color: #e0e0e0;
  letter-spacing: 0.2px;
  font-style: italic;
  text-align: center;
}
