body{
    font-family: 'Roboto', sans-serif;
    color: white;
    background-size: cover;
    background-position: center;
}


.nav{
    display: flex;
    justify-content: space-between;
    
    overflow: hidden;
    background:#cf2a9b;;
    color: #fff;
    padding: 20px 0;
  }
  
  .nav h2{
    font-size: 2rem;
    float: left;
  }
  
  nav{
    float: right;
  }
  
  nav ul{
    list-style-type: none;
  }
  
  nav li{
    font-size: 1.3rem;
    margin-top: 5px;
    float: left;
    padding: 0 15px;
  }
  
  nav a{
    text-decoration: none;
    color: #fff;
  }
  nav a:hover{
    color: #4715d0;
  }
  

.container{
    display: flex;
    flex-direction:column;
    width: 50%;
   
    align-items: center;
    justify-content: center;
    /* margin: auto; */
    box-sizing: border-box;
    background-color:#cf2a9b;
    box-shadow: 5px 10px  20px #383838;
    margin-top: 9%;
    margin-left: 30%;
    padding: 20px;
}

.numberContainer{
    display: flex;
    justify-content: space-between;
   }

.Sign{
    margin-left: 15px;
    margin-right: 15px;
}




.outPut{
    font-size: 2rem;
}

#goodAnswer{
    color: #70ff88;
    font-size: 4rem;
}
#badanswer{
    color: red;
    font-size: 4rem;
}

.buttonContainer{
    margin: auto;
    padding: 10px;
}

.button{
    border: 1px solid #a3a7a3;
    border-radius: 25px;
    height: 45px;
    font-size: 25px;
    background-color: #a7aea8;
    color: white;
    transition: .1s ease;
  
}
.button:hover{
    cursor: pointer;
    background-color: #c4fdcd;
}

.hidden{
    display: none;
}

.playerAnswer{
    background: #cf2a9b;
    height: 100%;
    margin: auto;
    padding: 10px;
    border-radius: 25px;
}
#answerInput{
    text-align: center;
    font-size: 1.5em;
    padding: 10px;
}
#checkAnswer{
    border-radius: 25px;
    box-sizing: border-box;
    height: 3em;
    cursor: pointer;
    margin-left: 10px;
}

@media(max-width: 480px){
    .container{
        margin: auto;
        align-items: center;
        margin-top: 50%;
        width: auto;
        
    }
}
@media(min-width: 481px) and (max-width: 750px){
    .container{
        margin: auto;
        width: auto;
        margin-top: 40%;
    }
}