* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #4facfe, #0400fe);
    color: #333;
    text-align: center;
    padding: 10px;
}

#head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #579de2;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2em;
    color: white;
}

#times-played {
    font-size: 1.2em;
    color: white;
}

#question1, #question2, #question3, #question4, #question5 {
    background: white;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
    margin-left: 350px;
    width: 60%;
    height: 150px;
}

input[type="radio"], input[type="checkbox"], input[type="number"], input[type="text"], select {
    margin-top: 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background 0.3s;
}

button:hover {
    background-color: #0056b3;
}

#totalScore {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 10px;
}

img {
    width: 20px;
    height: 20px;
}
