*{
    margin:0px;
    padding: 0px;
}
nav ul{
    list-style-type: none;
}

nav{
    height: 60px;
    background-color: rgb(136, 215, 215);
    font-size: 50px;
    text-align: center;
    color: rgb(30, 65, 177);
}

.container{
    /* background-color: yellow; */
    display: flex;
    text-align: center;
    flex-direction: column;
    
}
.line{
    background-color: rgb(196, 17, 212);
    width: 0vw;
    height: 5px;
    position: absolute;
    text-align: center;
    transform: translate(35vw, 15vw) rotate(90deg);
    transition: width 1s ease-in-out;
    
}
.game{
    display: grid;
    margin-top: 20px;
    justify-content: center;
    grid-template-columns: repeat(3, 10vw);
    grid-template-rows: repeat(3, 10vw);
    position: relative;
}
.box{
    border: 1px solid black;
    font-size: 8vw;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
.box:hover{
    background-color: rgb(168, 168, 223);
}
.info{
    justify-content: center;
    /* background-color: brown; */
    margin: auto;
    font-size: 3vw;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}
button{
    height: 6vw;
    width: 12vw;
    border-radius: 3vw;
    background-color: rgb(126, 40, 152);
    border: 0px;
    color: white;
    font-size: 2vw;
    margin: 2vw;
}
.bt-0{
    border-top: 0px;
}
.bl-0{
    border-left: 0px;
}
.bb-0{
    border-bottom: 0px;
}
.br-0{
    border-right: 0px;
}