body {
    background: black;
    color: white;
    font-family: 'Segoe UI', Tahoma, sans-serif; /* Fallback */
}

/*Font Faces*/
@font-face {
    font-family: 'Deja Vu';
    src: url('/dejavusans-bold.ttf');
}

h1 {
    font-family: 'Cambria', serif;
    color: #ffd000;
    text-shadow: #8a5a00 0 0 4px, #8a5a00 0 0 8px, #8a5a00 0 0 16px;
    text-align: center;
    font-size: 48px;
}

#quiz {
    max-width: 600px;
    width: 90vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    font-family: 'Deja Vu', sans-serif;
} #quiz p {
    color: #c287f3;
    margin-top: 20px;
}

input[type='radio'] {
    margin: 0;
    margin-right: 10px;
}

label {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 14px;
    cursor: pointer;
}

#results-button {
    width: 180px;
    height: 30px;
    margin: 30px auto;
    cursor: pointer;
    font-family: 'MS PGothic';
    font-weight: bold;
}

/* Result Section Styling */
.results {
    margin: 20px auto;
    padding: 20px;
    display: flex;           
    flex-direction: column;  
    align-items: center;     
    text-align: center;
}


/* Text Area */
.copy-area {
    display: block;        
    margin: 5px auto;    
    width: 200px;        
    height: 50px;
    padding: 10px;
    background-color: #f0f0f0;
    color: #333;
    font-size: 12px;
}