body{
    background-color: black;
}

.header-top{
    position: relative;

    color: rgb(82,82,82);
    text-align: center;
    font-size: 24px;
}

.backhome{
    position: absolute;

    left: 20px;
    top: 50%;

    color: rgb(255, 255, 255);
    text-decoration: none;
}

.game{
    background-color: rgb(150, 150, 150);
    
    margin-top: 10%;
    margin-left: 20%;
    margin-right: 20%;
    padding: 1%;

    border-radius: 40px;

    display: grid;
    grid-template-columns: repeat(3, 100px);

    gap: 15px;
    justify-content: center;
}

.square{
    background-color: rgb(30, 30, 30);

    width: 100px;
    height: 100px;
    
    border-radius: 25px;
    border-style: none;
}

#res{
    color: rgb(82,82,82);
    font-size: 40px;
}