<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Mi primera página web</title> <style> .cuestionario { width: 100%; margin: 40px auto; padding: 10px; background-color: #f5e8da; border: 1px solid #d3b8a5; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .pregunta { margin-bottom: 20px; } .pregunta-numero { display: inline-block; width: 30px; height: 30px; line-height: 30px; text-align: center; background-color: brown; color: white; border-radius: 50%; font-weight: bold; margin-right: 10px; } .opcion { margin-bottom: 10px; padding: 10px; border: 1px solid #ccc; border-radius: 5px; cursor: pointer; display: flex; align-items: center; } .opcion:hover { background-color: #f2e8dd; } .opcion.correcta { background-color: #c6efce; } .opcion.incorrecta { background-color: #ffc6c6; } .letra-opcion { display: inline-block; width: 30px; height: 30px; line-height: 30px; text-align: center; background-color: #b33a3a; color: white; border-radius: 50%; font-weight: bold; margin-right: 10px; } .siguiente { background-color: #4CAF50; color: #ffffff; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; display: none; } .resultado { font-size: 24px; font-weight: bold; margin-top: 20px; display: none; } .barra-temporizador { width: 100%; background-color: #e6ddd5; height: 30px; border-radius: 10px; margin-bottom: 20px; position: relative; overflow: hidden; } .barra-progreso { height: 100%; background-color: #4CAF50; width: 0%; border-radius: 10px; text-align: center; color: white; font-weight: bold; line-height: 30px; font-size: 18px; } .temporizador { font-size: 20px; color: #333; text-align: center; margin-top: -10px; font-weight: bold; } .locked { display: none; } .feedback { font-size: 18px; margin-top: 20px; display: none; } .reiniciar { background-color: #f44336; color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; } </style> </head> <body> </body> </html>