.piece {
    border: 0px transparent black;
    box-sizing: border-box;
    cursor: grab;
    background-size: cover;
    position: absolute;
    z-index: 1000;
}

.currentPoints {
    font-size: 1rem;
}

.timer {
    font-size: 1rem;
}

.puzzleContainer {
    height: 70vh;
    width: 95vw;
    border: 4px solid black;
    position: relative;
    margin-left: 2vw;
}

.btnReset {
    font-size: 1rem;
}

.boardBar {
    display: flex;
    width: 100%;
    gap: 0.5rem;
    flex-direction: row;
    padding: 5px;
}

.preview {
    flex: 1;
}

.stats {
    flex: 1;
    font-size: 1rem;
}

.reset {
    flex: 1;
}

.blinkCorrect {
    animation: blinking 0.5s infinite alternate;
}

@keyframes blinking {
    from {
        border: 3px solid green;
    }

    to {
        border: 3px solid greenyellow;
    }
}

.game {
    display: flex;
    justify-content: center;
    align-items: center;
}

.urlinput {
    height: 5vh;
    flex-grow: 1;
}

.urlItems {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}