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

body, html {
    height: 100%;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

main {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.section-pregunta {
    width: 50%;
    background-color: black;
    background-image: url('Arreglo.png');
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: left; 
    padding: 2%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: first baseline;
    
}

.section-respuesta {
  width: 50%;
  background: 
  url('BolasT.png'), /* Reemplaza con la ruta correcta de tu imagen */
  linear-gradient(70deg, rgba(255,123,172,1) 0%, rgba(162,106,255,1) 33%, rgba(41,171,226,1) 63%, rgba(122,201,67,1) 100%);
background-size: cover; /* Ajusta el tamaño de la imagen para cubrir el área */
background-position: right; /* Centra la imagen */
background-repeat: no-repeat; /* Evita que la imagen se repita */
padding: 2%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
    
}

h1 {
    text-align: left;
    margin-bottom: 1em;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 90pt;

}

.highlight {
  font-weight: bold;
  color: #a26aff
}

.pregunta input {
  background-color: #191919;
    margin-bottom: 3em;
    padding: 15px 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 23px;
    color: #8a8a8a; 
    border: 1px solid #191919;
    border-radius: 50px;
    width: 80%;
}

.pregunta button {
  background-color: #a26aff; 
  color: white; /* Color de texto blanco */
  border: none; /* Sin bordes */
  border-radius: 50px; /* Bordes completamente redondeados */
  padding: 10px 25px; /* Espaciado interno para un botón más grande */
  cursor: pointer; /* Cambia el cursor a un puntero cuando pasas sobre el botón */
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px; /* Tamaño del texto */
  transition: background-color 0.3s ease; /* Transición suave para el hover */
}

.pregunta button:hover {
  background-color: #8c55e4; /* Morado más oscuro al hacer hover */
}
.respuesta {
    /* From https://css.glass */
background: rgba(255, 255, 255, 0.32);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5.4px);
-webkit-backdrop-filter: blur(5.4px);
border: 1px solid rgba(255, 255, 255, 0.37);
    padding: 1em;
    margin-top: 1em;
    width: 70%;
    height: 50%;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: black; /* Asegúrate de que el color del texto sea visible */
    text-align: center; /* Centra el texto dentro del elemento */

}



/* .ball8 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
}

.ball8-circle {
    width: 55%;
    height: 55%;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: black;
} */
