body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    user-select: none;
}

[hidden] {
    display: none !important;
}

.container {
    position: relative;
}

.control {
    position: absolute;
    display: flex;
    font-size: 18px;
    justify-content: space-between;
    width: 100%;
    top: -30px;
    left: 0;
    color: #000;
}

.moves-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

span.time, span.moves {
    color: rgb(194, 78, 0); 
}

.burger {
    cursor: pointer;
    transition: .15s;
}
.burger:hover {
    color: rgb(194, 78, 0);
}

.menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, .8);
    color: #fff;
}

.menu-list {
    margin: 12px 0;
    font-size: 25px;
    cursor: pointer;
    transition: .15s;
}
.menu-list:hover {
    color: rgb(194, 78, 0);
}

.load-game {
    position: absolute;
    top: 0;
    left: 12px;
    font-size: 18px;
    line-height: 25px;
}

.content {
    width: 600px;
    height: 600px;
    background-color: rgb(181, 238, 255);
    position: relative;
}

.close {
    position: absolute;
    top: 22px;
    right: 30px;
    font-size: 25px;
    margin: 0;
}

.size-wrapper {
    margin: 12px 0;
    font-size: 25px;
}

.boardSize {
    font-size: 25px;
    cursor: pointer;
}

.message {
    position: absolute;
    bottom: 20px;
}





.empty, .item {
    position: absolute;
}

.droppable {
    background-color: pink;
}

.item {
    background-color: rgb(76, 74, 238);
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
    transition: all 0.3s;
}
.item:hover {
    cursor: pointer;
    opacity: .8;
}


