* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#candy-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.candy-row {
    display: flex;
}

.candy-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgb(255, 225, 168);
    cursor: pointer;
    
    transition: .1s ease-in-out;
}

.candy-item:hover {
    background-color: rgb(255, 243, 190);
}

.candy-item.active {
    background-color: rgb(255, 237, 204);
}