html {
    font-family: "Quicksand", sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height:100%;
}

body 
{
    width:100%;
    position: relative;
    float:left;
    padding:0;
    margin:0;
    background: rgb(102,55,151);
background: linear-gradient(356deg, rgba(102,55,151,1) 44%, rgba(56,29,98,1) 100%);
}
button {font-family: "Quicksand", sans-serif;}


/* ====================================================================== */
/* ============================== GAMEPLAY ============================== */
/* ====================================================================== */

.container 
{
    max-width:640px;
    width:100%;
    height:100%;
    position: relative;
    left:50%;
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
    -moz-transform:translateX(-50%);
    -o-transform:translateX(-50%);
    
}

.gameplay_bg {
    width: 100%;
    height: 100vh;
    display: block;
    position: relative;
    top: 0;
    overflow: hidden;
    float: left;
}

#container > svg > path:nth-child(1) {
    stroke: rgba(255,255,255,0.2);
}


.gameplay_title_container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top:20px;
}

.gameplay_title {
    text-align: center;
    font-size: 25px;
    color: #ffffff;
    font-weight: bold;
    position: relative;
    float: left;
    width: 100%;
}

.gameplay_title p
{
    font-weight: 400;
}
.gameplay_title h3
{
    display: block;
    color:#e288d3;
    font-size:38px;
    margin:0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gameplay_title h3::after
{
    content:'';
    color:#e288d3;
    border-bottom:1px solid #e288d3;
    position: relative;
    width: 140px;
    display: block;
    padding-top: 20px;
}

/*timer*/
.game-timer {
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    /* max-width: 10%; */
    text-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 10px;
    margin:0 auto;
    /* background: #1a0a34;
    padding: 15px;
    border-radius: 12px; */
    width:130px;
}

.timer-container {
    display: flex;
    align-items: center;
    color: white;
    font-size: 24px;
    background: #1a0a34;
    padding: 15px;
    border-radius: 12px;
    width: 100px;
}
.icon {
    margin-right: 10px;
    position: relative;
    float: left;
    width: 25px;
    height: 25px;
}
.icon img {width:25px;}
#timer {width: 67px;}



.gameplay_game_box {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    margin: -5px auto 50px auto;
    position: relative;
}

.gameplay_btns_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-self: center;
}

.gameplay_btn {
    border: 1px solid #381b6b;
    border-radius: 16px;
    min-width: 190px;
    max-width: 250px;
    min-height: 75px;
    font-size: 25px;
    background-color: transparent;
    color: #ffffff;
    font-weight: bold;
    margin: 10px;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor:pointer;
}

.gameplay_btn:hover {
    background-color: #381b6b;
    border: 1px solid #381b6b;
}

.gameplay_btn:focus,
.gameplay_btn:active {
    /* border: 4px solid #39BF93; */
    outline: none;
}

.gameplay_btn_correct {
    background-color: #3abf94;
    border: 4px solid #3abf94!important;
}
.gameplay_btn_correct:hover {
    background-color: #3abf94;
    border: 4px solid #3abf94!important;
}

.gameplay_btn_false {
    background-color: #fd4b4b;
    border: 4px solid #fd4b4b!important;
}
.gameplay_btn_false:hover {
    background-color: #fd4b4b;
    border: 4px solid #fd4b4b!important;
}


@media only screen and (min-width: 1700px)
{
    .gameplay_bg {height:100vh;}
}

@media only screen and (max-width: 1699px) {

    .gameplay_bg {height:100%; background-size: 100%; padding-bottom: 0px; min-height: 100vh;}
    html {height: auto;}
    
}

@media only screen and (max-width: 560px) {
    .container {width:80%;}
    .gameplay_btns_row {justify-content: center;}
    .gameplay_btn {min-width:auto; width:100% !important; font-size:20px;}
}

/* ================= End Free ============== */
@media only screen and (max-width: 480px) {
  
}

@media only screen and (max-width: 360px) {
    .gameplay_btn {margin: 5px; min-width: 130px;}
}
@media only screen and (max-width: 280px) {
    
}
