<!DOCTYPE html> <html lang="el"> <head> <meta charset="UTF-8"> <title>Κουίζ - Συμφωνία μ' ένα δέντρο</title> <style> body{ font-family: Arial, sans-serif; background:#e8f5e9; text-align:center; padding:20px; } h1{ color:#2e7d32; font-size:42px; } .tree{ font-size:70px; } .question{ background:white; border-radius:25px; padding:25px; margin:20px auto; max-width:750px; box-shadow:0 5px 15px rgba(0,0,0,0.2); } h2{ font-size:30px; color:#1b5e20; } .answer{ background:#81c784; border:none; border-radius:20px; padding:15px; margin:10px; width:80%; font-size:25px; cursor:pointer; } .answer:hover{ background:#66bb6a; transform:scale(1.03); } #message{ font-size:30px; font-weight:bold; margin:20px; } #score{ font-size:28px; color:#1565c0; } #next{ display:none; background:#1565c0; color:white; border:none; border-radius:15px; padding:15px 30px; font-size:25px; cursor:pointer; } </style> </head> <body> <div c...