body {
    background: linear-gradient(135deg, #ff00cc, #3333ff, #00ffea, #0000ff);
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-align: center;
    padding: 20px;
    animation: bgMove 8s infinite alternate;
    background-size: 300%;
}

@keyframes bgMove {
    0% { background-position: left; }
    100% { background-position: right; }
}

h1 {
    font-size: 40px;
    text-shadow: 0 0 15px #fff;
}

.question {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 0 20px #00ffea;
    transition: 0.4s;
}

.question:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #ffea00;
}

button {
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    background: #00ffea;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 0 10px #00ffea;
}

button:hover {
    background: #ffea00;
    box-shadow: 0 0 20px #ffea00;
    transform: scale(1.1);
}

.answer {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background: #00000090;
    border-radius: 10px;
    animation: fadeIn 0.5s forwards;
    color: #00ffea;
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

input[type="radio"] {
    accent-color: #ffea00;
    transform: scale(1.2);
}
.description {
    background-color: lightblue;
    padding: 20px;
    margin: 20px auto;
    border-left: 5px solid #3f51b5;
    border-radius: 8px;
    max-width: 900px;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.description b {
    color: #3f51b5;
    font-size: 18px;
}

@media (max-width: 600px) {
    .description {
        padding: 15px;
        font-size: 16px;
    }
}
.footer {
  background-color: lightskyblue;
  padding: 25px 0;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 12px;
  color: #444;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}



