body {
    background-color: #5145BA;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 100vh;
    margin: 0;
}

p {
   font-size:1.1rem;
   line-height: 1.8; 
}

li {
   font-size:1.1rem; 
   line-height: 1.8;
}

.pagenumber {
  font-size:0.9rem;  
}

.quiz-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
}

/* Centering the buttons and making them less wide */
.controls {
    display: flex;
    justify-content: center;
}

button {
    background-color: #5145BA;
    color: white;
    border: none;
    padding: 14px 30px; /* Wider padding for a nice button shape */
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    width: auto; /* Changed from 100% to auto */
    min-width: 120px;
}

button:hover {
    opacity: 0.9;
}