@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mooli&family=Quicksand:wght@300..700&family=Rowdies:wght@300;400;700&display=swap');
        body {
            font-family: "Mooli", sans-serif;
  font-weight: 400;
  font-style: normal;
            line-height: 1.6;
            color: #333;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f4f4f4;
        }
        header {
            text-align: center;
            margin-bottom: 30px;
        }
        h1 {
            color: #ac2c92;
			 background-color: #fff;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
h2 {
            color: #ac2c92;
			 background-color: #fff;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .logo {
            max-width: 360px;
            margin-bottom: 20px;
        }
        .question {
			font-size: 24px;
			font-weight: bold;
            background-color: #fff;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .options {
			font-weight: normal;
            margin-top: 10px;
        }
        .option {
            display: block;
            margin-bottom: 10px;
        }

input[type="radio"] {
    height: 1.5rem;
    width: 1.5rem;
    margin-right: 0.5rem;
	accent-color: #ac2c92;
	
	}
        button {
            background-color: #ac2c92;
            color: #fff;
            border: none;
            padding: 10px 20px;
            font-size: 30px;
            cursor: pointer;
            border-radius: 10px;
            transition: background-color 0.3s;
        }
        button:hover {
            background-color: #965AA0;
        }
        #result, #refuerzo {
            font-weight: bold;
            margin-top: 20px;
            font-size: 32px;
        }
        footer {
			font-size: 14px;
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
        }
        footer a {
            color: #ac2c92;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        #correctAnswers {
            display: none;
            margin-top: 20px;
        }
