/* Some CSS styling */

#sketchpadapp {
    /* Prevent nearby text being highlighted when accidentally dragging mouse outside confines of the canvas */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#sketchpad {
    float: left;
    /* height: 600px; */
    /* width: 400px; */
    border: 2px solid #888;
    border-radius: 4px;
    position: relative;
    /* left: 50%;
    top: 50%;
    transform: translate(-50%);
    margin: 40px; */
    /* Necessary for correct mouse co-ords in Firefox */
}

#displayBox {
    height: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    margin: 40px
}

#colorSelector{
    margin: 80px;
    justify-content: center;
    display: flex;
}

#submission{
    margin: 80px;
    justify-content: center;
    display: flex;
}

#primaryColor{
    padding:50px;
    margin: 10px;
    color: #FEFEFE;
    font-weight: 800;
}
#secondaryColor{
    padding:50px;
    margin: 10px;
    color: #FEFEFE;
    font-weight: 800;
}
#undoButton{
    background-color: #9E9E9E;
    padding:30px;
    margin: 10px;
    color: #FEFEFE;
    font-weight: 800;
}

#submitIt{
    background-color: #26A69A;
    padding:20px;
    width: 25%;
    /* height: 12%; */
    color: #FEFEFE;
    font-weight: 800;
}

.slide-transition {
    animation: fadeIn cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s;
    animation-iteration-count: initial;
}

@keyframes fadeIn {
    0% {
        transform: translate(-50%);
        opacity: 0%;
    }
    100% {
        transform: translate(0em);
        opacity: 100%;
    }
  }