*{
    /* box-sizing: border-box; */
    margin: 0;
    padding: 0;
}
body{
    min-height: 100vh;
    background-color: antiquewhite;
}
header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
header a{
    position: absolute;
    left: 50px;
}
#grid{
    width: 500px;
    height: 500px;
    margin: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    outline: auto;
}
.cell{
    margin: 0;
    /* outline: 1px solid red; */
}
/* Style the slider container */
#slider-container {
    width: 300px;
    margin: 0 auto;
}
  
/* Style the slider itself */
#slider {
    width: 100%;
}

.pick-container{
    width: 500px;
    margin: 20px auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.pick{
    height: 100px;
    width: 100px;
    border-radius: 50%; 
    outline: auto;
}
.pick:hover{
    transform: scale(1.25);
}
#pickBlue{
    background-color: blue;
}
#pickRed{
    background-color: red;
}
#pickYellow{
    background-color: yellow;
}
