@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
*{
    box-sizing: border-box;
  }
  body{
    margin:0;
    background-color: #b8c6db;
    background-image: linear-gradient(315deg, #b8c6db 0%, #f5f7fa 74%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Libre Baskerville', serif;  
    font-size: 0.9rem;
  }

  .quiz-container{
    background-color:#fff;
    border-radius: 10px;
    box-shadow: 0 0px 20px 0.2px rgba(0,0,0,0.5);
    width:600px;
    max-width:100%;
    overflow:hidden;
  }
  .quiz-header{
    padding: 2rem 4rem;
  }
  ul{
    list-style-type: none;
    padding: 0; 
  }
  
  #button-67 {
     padding:1rem;
     background-color: #045de9;
     background-image: linear-gradient(315deg, #045de9 0%, #09c6f9 74%);
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #1d0dca17;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 1.5rem;
    justify-content: center;
    touch-action: manipulation;
    width: 100%;
    border:none;
  }
  #button-67:hover {
     background-color: #045de9;
     background-image: linear-gradient(515deg, #045de9 0%, #09c6f9 100%);
    
    box-shadow: -15px -15px 30px 0 #fff, 15px 15px 30px 0 #1d0dca17;
  }
  
  h2{
    margin:1;
  }
  ul li{
    margin:1.5rem 0;
  }
  ul li label{
    cursor: pointer;
  }
  .score{
    text-align: center;
    padding:2rem;
  }
  .nothing{
     padding:1rem;
     background-color: #045de9;
     background-image: linear-gradient(315deg, #045de9 0%, #09c6f9 74%);
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #1d0dca17;
    color: #fff;
    cursor: pointer;
    display: block;
  /*   font-family: "Cascadia Code",Consolas,Monaco,"Andale Mono","Ubuntu  Mono",monospace; */
    font-size: 1rem;
    justify-content: center;
    touch-action: manipulation;
    width: 100%;
    border:none;
  }