* {
    box-sizing: border-box;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    background-color: rgba(238, 130, 238, 0.356);
}

.quiz-container {
    border-radius: 10px;
    width: 600px;
    background-color: white;
    overflow: hidden;
}

.quiz-header {
    padding: 4rem;
}

h2 {
    padding: 1rem;
    text-align: center;
    margin: 0;
}

ul {
    list-style-type: none;
    pad: 0;
}

li {
    font-size: 1.2rem;
    margin: 1rem 0;
}

label {
    cursor: pointer;
}

button {
    background-color: rgb(245, 8, 245);
    color: white;
    border: none;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 1.3rem;
    font-family: inherit;
}

button:hover {
    background-color: violet;
}

button:focus {
    outline: none;
    background-color: rgb(245, 8, 245);
}