
.quiz h3{
    padding: 16px;
    text-align: center;
    margin: 0;
}

.quiz-box{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 2px rgba(100, 100, 100, 0.1);
    width: 600px;
    overflow: hidden;
	padding: 1rem;
}
.quiz-header{
    padding: 1rem 2rem;
}
.quiz ul{
    list-style: none;
    padding: 0;
}
.quiz ul li{
    font-size: 20px;
    margin: 15px 0;
}
.quiz ul li label{
    cursor: pointer;
}
.quiz-box button {
    display: block;
    width: 60%;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    padding: 15px;
    transition: all 0.5s ease;
    margin: 1rem auto;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
}
.quiz-box button:hover{
  /*   background-color: #438faa; */
}
.quiz-box button:focus{
   /*  outline: none;
    background-color: #5ec6eb; */
}

.quiz input.answer{
	margin-right: 1rem;
}

@media (width <=720px){
	.quiz-box {
    width: 90%;
}
}

@media (width <=520px){
	.quiz-box{
	   padding: 2rem 0.4rem;
	   width: 98%;
	}
	
	.quiz-header {
       padding: 1rem 0.7rem;
   }
   .quiz-box button {
    width: 80%;
   }
}

.quiz-box {
    box-shadow: 0 0 24px 5px rgb(100 100 100 / 40%);
	margin: 2rem auto;
}

/* стили */

.quiz {
	    margin-bottom: 5rem;
}

.quiz-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 1rem auto;
    background: url(../images/bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    flex-direction: column;
}

.quiz-box button {
    display: block;
    width: 60%;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    padding: 15px;
    transition: all 0.5s ease;
    margin: 1rem auto;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
	border: 2px solid #c2c2c2;
	border-radius: 3.125rem;
}

.quiz button:hover {
    border: 0.125rem solid #005baa;
    color: #005baa;
}

.quiz h6#question {
    margin: 2rem auto;
	font-size: clamp(1.4375rem, 1.1rem + 0.75vw, 1.5rem);
    text-align: center;
    font-weight: 600;
}

.quiz ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0.5rem;
    display: block;
    margin-bottom: 1rem;
}

.quiz ul li {
    font-size: 20px;
    margin: 15px 0;
	
}

.quiz  li {
	display: block;
    position: relative;
    padding-left: 24px;
}