body{
    background: url("./background.jpg") no-repeat center fixed;

    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-align: center;
}


#board {
    width: 450px;
    height: 450px;
    background-color: lightblue;
    border: 5px solid slategray;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}


#board img {
    width: 50px;
    height: 50px;
}

/* Define glow animation */
@keyframes glow {
    0% { box-shadow: 0 0 10px 0px rgba(255, 255, 255, 0.8); }
    50% { box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.8); }
    100% { box-shadow: 0 0 10px 0px rgba(255, 255, 255, 0.8); }
}

/* Apply glow animation to candies */
.glow {
    animation: glow 1s infinite;
}
