*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Faculty Glyphic", sans-serif;
}   
body
{
    color: #fff;
    background-color: black;
    overflow: hidden;
}       
.header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo   
{
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    filter: drop-shadow(0 0 5px rgb(255, 0, 0));
}
.navbar .a
{
    color: #c4003b;
}
.navbar a
{
    font-size:18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}
.navbar a:hover
{
    color: #c4003b;
}
.main
{
    min-height: 100vh;
    background-image: url(img.jpg);
    background-size: cover;
    background-position: center;
    transition: .3s ease;
    pointer-events: auto;
}
.main.active
{
    filter: blur(15px);
}
.container
{
    display: flex;
    height: 100vh;
    width: 200%;
}
.home
{
    position: relative;
    left: -50%;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-content
{
    max-width: 600px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.home-content h1
{
    font-size: 48px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
}
.home-content p
{
    font-size: 16px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
    margin-bottom: 30px;
    font-weight: 100;
}
.start-btn
{
    width: 190px;
    height: 55px;
    background-color: #c23660;
    border: 2px solid #c23660;
    color: #fff;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px #c23660;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
}
.start-btn:hover
{
    background-color: transparent;
    box-shadow: none;
}
.rules
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)scale(.9);
    width: 500px;
    background: #ffffff;
    border-radius: 6px;
    padding: 10px 25px;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}
.rules.active
{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%)scale(1);
}
.rules h2
{
    font-size: 50px;
    color:#c23660;
}
.span
{
    display: inline-block;
    font-size: 16px;
    color: black;
    font-weight: 500;
    margin: 4px 0;
}
.btn-group
{
    display: flex;
    justify-content: space-between;
    align-items: center;  
    border-top: 1px solid #999;
    margin-top: 10px;
    padding: 15px 0 7px;  
}
.btn-group .info-btn
{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 45px;
    background-color: #c23660;
    border: 2px solid #c23660;
    outline: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    transition: .5s;
}
.btn-group .info-btn:nth-child(1)
{
    background-color: transparent;
    color: #c23660;
}
.btn-group .info-btn:nth-child(1):hover
{
    background-color:#c23660;
    color: #fff;
}
.btn-group .info-btn:nth-child(2)
{
    background-color: transparent;
    color: #c23660;
}
.btn-group .info-btn:nth-child(2):hover
{
    background-color:#c23660;
    color: #fff;
}
.quiz1
{
    padding: 4px;
    position: relative;
    left: -50%;
    width: 100%;
    background-color: rgb(17, 16, 16);
    transition: .8s ease-in-out;
    transition-delay: .25s;
    display: flex;
    justify-content: center;
    align-items: center;    
    z-index: 100;
}
.quiz1.active
{
    left: 0;
}      
.quiz-box
{
    position: relative;
    width: 500px;
    height: 500px;
    
    border: 1px solid;
    border-color:  #fe6f9a;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
}
.quiz-box h1
{
    font-size: 32px;
    text-align: center;
    background: linear-gradient(45deg, transparent, #fe6f9a, transparent);
    border-radius: 6px;
}
.quiz-header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px solid #fe6f9a;
    margin-bottom: 5px;
}
.quiz-header span
{
    font-size: 15px;
    font-weight: 500;
}
.header-score{
    background: #fe6f9a;
    border-radius: 2px;
    padding: 7px;
}
.question-text{
    font-size: 20px;
    font-family: weight;
}
.option-list .option
{
    width: 100%;
    padding: 5px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    font-size: 17px;
    margin: 15px 0;
    cursor: pointer;
    transition: .3s;
}
.option-list .option:hover
{
    background: rgba(255, 255, 255, .1);
    border-color:  rgba(255, 255, 255, .1);
}
.quiz-box .quiz-footer
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #fe6f9a;
    padding-top: 15px;
    margin-top: 15px;
}
.quiz-footer .question-total
{
    font-size: 16px;
    font-weight: 600;   
}
.quiz-footer .next-btn
{
    width: 100px;
    height: 45px;
    background-color: #fe6f9a;
    color: white;
    border-radius: 6px;
    border: 2px solid  rgba(255, 255, 255, .1);
    outline: none;
}
.next-btn:hover
{
    background-color: transparent;
    box-shadow: none;
    border-color: #fe6f9a;
}