body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: cornflowerblue;
}

.welcome_text {
    width: 400px;
}

.welcome_form input,
.welcome_form button {
    display: block;
    width: 100%;
} 

::placeholder {
    color: #fff !important;
}

.welcome_form input {
    margin-bottom: 15px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 30px;
    outline: none;
    text-align: center;
}

.welcome_form button {
    padding: 20px 0;
    font-size: 30px;
    border: none;
    background-color: #fff;
    color: cornflowerblue;
    border-radius: 50px;
    transition: 0.4s all;
    outline: none;
}
.welcome_form button:hover {
    transform: translateY(-6px);
    cursor: pointer;
}

/* //---Quiz html Style---// */
.quiz {
    width: 700px;
    height: 500px;
    display: grid;
    grid-template-rows: 50px auto;
    background-color: #fff;    
    border-radius: 5px;
}

.quiz_header {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 2px 5px 2px rgb(0, 0, 0 , 0.3);
}

.quiz_body {
    background-color: aliceblue;
    padding: 20px;
}

.quiz_user {
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-weight: bold;
}

.quiz_timer {
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: silver;
    font-weight: bold;
}

.option_list {
    list-style-type: none;
    margin: 30px 0;
}

.option {
    background-color: #fff;
    width: 250px;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 100px;
    border: 2px solid transparent;
}
.option:hover {
    cursor: pointer;
    border: 2px solid cornflowerblue;
    color: cornflowerblue;
}

.Next_Btn {
    background-color: cornflowerblue;
    color: #fff;
    padding: 15px 30px;
    border: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.4s all;
    outline: none;
}
.Next_Btn:hover {
    cursor: pointer;
    color: cornflowerblue;
    background-color: #fff;
    box-shadow: 0 0 10px 1px gray ;

}

.active {
    background-color: cornflowerblue;
    color: #fff !important;
}

/* //===End.html Style===// */
.fa-trophy {
    font-size: 300px !important;
    color: #fff;
    
}

.user_name,
.user_points,
.user_time {
    color: #fff;
    text-align: center;
    font-size: 20px;
}