main {
  display: flex;
  flex-direction: column; /* Apila los elementos verticalmente */
  align-items: center; /* Centra horizontalmente los elementos dentro de main */
  margin: 0 auto; /* Centra main horizontalmente en la página */
}

body {
  font-family: "proxima-nova", sans-serif;
  background-color: #b4b6c2;
}

#btn_index {
  width: 100px;
  font-size: 20px;
  height: 40px;
}

#preguntas {
  /* display: flex; */
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
  background-color: #0a59a3ea;
}

#pregunta {
  margin-top: 2rem;
  margin-left: 6%;
  width: 90%; /* Occupy full width */
  color: white;
}

#opciones {
  margin-top: 2rem;
  margin-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  color: white;
}

#opciones_imagen {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 3rem;
}

input[type="radio"] {
  margin-right: 0.5rem;
}

#contador {
  margin-top: 2rem;
  margin-bottom: 1%;
  font-size: 20px;
}

#inicio {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  font-size: 20px;
}

#siguientepregunta {
  width: auto; /* Adjust button width to fit content */
  margin-top: 2rem;
  margin-left: 6%;
  margin-bottom: 2%;
  padding: 0.5rem 1rem;
  background-color: #ffffffd4;
  color: rgb(4, 4, 4);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
}

img {
  width: 300px;
  height: 300px;
  /* margin-left: auto; Align image to the right */
}

/* Estilos para los botones de selección de examen */
.exam-button {
  padding: 10px 20px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007bff; /* Puedes personalizar el color de fondo */
  color: white;
  cursor: pointer;
}

.exam-button:hover {
  background-color: #0062cc; /* Puedes personalizar el color al pasar el mouse */
}

.pregunta-estilo {
  /* Styles for the question */
  font-size: 32px; /* Adjust font size as needed */
  margin-bottom: 10px; /* Adjust spacing as needed */
}

.opcion-estilo {
  /* Styles for the options */
  display: block; /* Make options appear on separate lines */
  font-size: 28px; /* Adjust font size as needed */
  margin-bottom: 5px; /* Adjust spacing between options */
}