*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('https://media.tenor.com/eDOfEeBzL3cAAAAC/voxed-vende-humo.gif');
    background-repeat: no-repeat;
    background-size: cover;
}

.board{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin: 0 50px;
}

.board .dropBox{
    position: relative;
    width: 140px;
    height: 140px;
    border-right: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.board .dropBox:nth-child(3),
.board .dropBox:nth-child(6),
.board .dropBox:nth-child(9){
    border-right: none;
}

.board .dropBox:nth-child(7),
.board .dropBox:nth-child(8),
.board .dropBox:nth-child(9){
    border-bottom: none;
}

.board .dropBox div{
    pointer-events: none;
    scale: 1.5;
}

.drag{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 420px;
    width: 100px;
    gap: 10px;
    margin: 0 40px;
    cursor: grab;
}

.drag .dragBox{
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
}

.cross{
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cross::before{
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background: #ffffff;
    transform: rotate(45deg);
}

.cross::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: #ffffff;
    transform: rotate(45deg);
}

.circle{
    position: relative;
    width: 50px;
    height: 50px;
    border: 5px solid #ffffff;
    border-radius: 50%;
}

.reset{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%);
    padding: 10px 25px;
    border: none;
    outline: none;
    background: #161616;
    color: #ffffff;
    font-size:1.5em;
    cursor: pointer;
}



