html{
    margin:0;
    padding: 0;
    min-height: 100vh;
}
body{
    min-height: 100vh;
    margin:0;
    padding: 0;
    background-color: black;
}


.navbar{
    border-bottom: 1px solid rgba(255, 255, 255, 0.135);
     height:10vh;
    font-size: 25px;
    font-family: sans-serif;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.container{
    background-color: black;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.boxcon{
    display: flex;
    flex-direction: row;
}


.gamebox{
    box-shadow: 0 0 .2rem #fff,
            0 0 .2rem #fff,
            0 0 2rem #bc13fe,
            0 0 0.8rem #bc13fe,
            0 0 2.8rem #bc13fe,
            inset 0 0 1.3rem #bc13fe; 
    padding: 50px;
    margin: 50px;
    border: 2px solid white;
}


.boxes{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color:white;
    font-size: 70px;
    border-collapse: collapse;
    height:75px;
    width: 75px;
    border:2px solid white;
}

#box00{
    border-top: none;
    border-left: none;   
}
#box01{
    border-top: none;
}
#box02{
    border-top: none;
    border-right: none;
}
#box10{
    border-left: none;
}
#box12{
    border-right: none;
}
#box20{
    border-bottom: none;
    border-left: none;   
}
#box21{
    border-bottom: none;
}
#box22{
    border-bottom: none;
    border-right: none;
}
.player{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:160px;
    width:200px;
    padding: 40px;
    margin: 50px;
    border:2px solid white;
}
.heading{
    color: white;
    font-family: sans-serif;
  
}
.box{
    font-family: sans-serif;
    color: white;
    font-size: 20px;
    

}
.megacontainer{
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    height: 680px;
}
button{
    height: 50px;
    border-radius: 40px;
    width: 300px;
    font-family: sans-serif;
    background-color: #bc13fe;
    color: white;
    font-size: 25px;
    margin-top: 20px;
}
button:hover{
    box-shadow: 0 0 .2rem #fff,
    0 0 .2rem #fff,
    0 0 2rem #bc13fe,
    0 0 0.8rem #bc13fe,
    0 0 2.8rem #bc13fe,
    inset 0 0 1.3rem #bc13fe; 
    background-color:black;
}
.p11{
   box-shadow:  0 0 0.2rem #fff, 0 0 0.2rem #fff, 0 0 2rem #ff0000, 0 0 0.8rem #ff0000, 0 0 2.8rem #ff0000, inset 0 0 1.3rem #ff0000;

}
.p22{
    box-shadow: 0 0 0.2rem #fff, 0 0 0.2rem #fff, 0 0 2rem #4aff0f, 0 0 0.8rem#4aff0f, 0 0 2.8rem #4aff0f, inset 0 0 1.3rem #4aff0f;
}
.boxes:hover,button:hover{
    cursor: pointer;
}
.megacontainer h1{
    color: white;
    font-family: sans-serif;

}
.dash{
    position: absolute;
    top:10px;
    left:10px;
    height:100px;
    width:15px;
    background-color: white;
    
}
@media (max-width: 1057px){
.container {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}
.megacontainer{
    height: auto;
}
.player{
    font-size: 1rem;
    height: 100px;
    width: 300px;
    padding: 20px;
    margin: 0;
}

}