@import url("https://fonts.googleapis.com/css2?family = Poppins:wght@200;400&display=swap");

*{
    box-sizing: border-box;
}
body{
  display:flex;
  justify-content:center;
  align-items: center;
  height:100vh;
  margin:0;
  overflow:hidden;
  font-family:"Poppins", sans-serif;
  background-color:#b8c6db;
  background-image: linear-gradient(315deg, #b8c6db 0%, #f5f7fa 100%)

}

.quiz-container{
    background-color:#fff;
    border-radius:10px;
    box-shadow:0 0 10px 2px rgba(100, 100, 100, 0.1);
    width:600px;
    overflow:hidden;
}

.quiz-header{
    padding:4rem;
}

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

}

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

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

ul li label {
    cursor:pointer;
}

button{
    background:#8e44ad;
    width:100%;
    border:none;
    color:#fff;
    font-size:1.1rem;
    font-family:"Poppins", sans-serif;
    cursor:pointer;
    padding:1.3rem;
}

button:hover{
    background:#732d91;
}

button:focus{
    outline:none;
    background:#5e3370;
}