*{
  margin: 0;
  padding: 0;
}
h1{
    color: white;
    position: absolute;
    top: 12%;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: black;
}
.container{
    padding: 5px;
    text-align: center;
    color: white;
}
.currplayer{
    width: 100%;
    font-size: 30px;
    margin-bottom:25px;
}
#symbol{
    font-size: 30px;
}
.boxcontainer{
    display: grid;
    grid-template-columns: auto auto auto;
    text-align: center;
    font-size: 20vw;;
}
.box{
    background: white;
    color: black;
    width: 6vw;
    height: 12vh;
    margin: 2px;
    font-size: 25px;
}
.right{
    border-right: 2px solid black;
      width: 6vw;
    height: 12vh;
    margin: 2px;
}
.bottom{
    border-bottom: 2px solid black;
      width: 6vw;
    height: 12vh;
    margin: 2px;
}
#win{
    margin-top: 10px;
    margin-bottom: 10px;
    display: none;
}
#reset{
    background: #4d4d4d;
    border: none;
    padding: 10px;
    font-size: 20px;
    color: white;
    border-radius: 15px;
    display: none;
}
.grey{
    background: lightgray;
}

@media(max-width: 360px){
    .box {
    width: 13vw;

}
h1 {
    top: 2%;
}
#win {
    margin-top: 2px;
    margin-bottom: 8px;
}
#reset {
    background: #4d4d4d;
    border: none;
    padding: 8px;
    font-size: 16px;
    color: white;
    border-radius: 15px;
    display: none;
}
.currplayer {

    font-size: 20px;

}
}