body {
    display: flex;
   
    align-items: center;
   
    font-family: Arial, sans-serif;
}

.quiz-container {
    background: white;
   margin-left: 0px;
    width: 100%;
    position: relative;
    top: 100%;
   
}
.app{
    color: white;
    font-weight: 100;
    position: relative;
   left: 48%;

}

.quiz-header {
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
   
}
input{
    cursor: pointer;
}
label{
    cursor: pointer;
}
li {
    margin-top: 1%;
    border: 1px solid black;
    height: 40px;
    width: 95%;
    display: flex;
    align-items: center;
    gap: 2%;
    border-radius: 5px;
    cursor: pointer;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    width: 100px;
    height: 30px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    
}
#submit{
  margin-left: 42%;
}

button:hover {
    background-color: #0056b3;
}

.hide {
    display: none;
}

.padding{
    position: absolute;
    left: 0%;
   top: 0%;
   display: flex;
   width: 100%;
  height: 10%;
   background-color: black;

}