body {
    font-family: Arial, sans-serif;
    background-color: #0e042d;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;      
}

.Quiz{
    background: #de63c1;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.question {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ac0229;
}

.options {
        display: flex;
        flex-direction: column;
        gap: 10px;
            
}

.option {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border: 2px solid rgb(13, 13, 46) ;
}

.option:hover {
    background-color: #230a78 ;
    color: #fff;
}

.timer {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #13100e;
}

.result {
    font-size: 1.5em;
    color: #09092e;
    display: none;
}

.restartBtn {
    color: #090f1a;
    background-color: #039036;
    border: 3px solid #0d1a2a;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    margin-left: 185px;
    display : none;
    width: 200px;       
}

.restartBtn:hover {
    color: #ccc;
    background-color: #150740 ;
}