/* Estilos generales */


.button-container {
  display: flex;
  justify-content: center;
  gap: 20px; /* Ajusta el espacio entre los botones según sea necesario */
  margin-top: 20px; /* Ajusta el margen superior según sea necesario */
}

.custom-button {
  background-image: linear-gradient(to right, #212121, #303030);
  border: none;
  border-radius: 12px;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  font-weight: bold; /* Agregado para hacer el texto en negrita */
  transition-duration: 0.4s;
  cursor: pointer;
}

.custom-button:hover {
  background-image: linear-gradient(to right, #000, #303030);
}




body {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}


@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blinking-text {
  animation: blink 1s infinite;
	color: #2d2d2d;
}





body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url('g-ia3.jpg');
  background-size: cover; /* Ajusta la propiedad background-size para hacer la imagen redimensionable y que cubra todo el fondo sin repetirse */
  font-family: 'Roboto', sans-serif;
}

.container {
  max-width: 400px;
  width: 90%;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 40px;
  margin-top: 150px;
  margin-bottom: 50px; 
  box-shadow: 0 0 35px 2px #2d2d2d;
}

.content {
  text-align: center;
  padding-top: 0px;
  font-size: 0.9em;
  color: #2d2d2d;
  text-align: justify;
}

h3 {
  font-size: 1.4em;
  font-weight: bold;
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  color: #2d2d2d;
  text-align: center;
}

.logo {
  text-align: center;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.logo img {
  max-width: 248px;
  height: auto;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #f9f9f9;
  text-align: center;
  padding: 10px 0;
}


