body{
    background-color:antiquewhite;
}

.colorChange{
    height: 60px;
    width: 70px;
    border-radius: 40%;
    box-shadow: 5px 5px 2px rgb(74, 74, 74);
}

canvas{
    border: 2px solid black;
}

.container{
    display:flex;
    flex-direction: column;
    justify-content: center;
    
}

h1{
    padding-top: 30px;
    padding-bottom: 35px;
    font-family: "Rampart One";
    font-size: 50px;
    color: blue;
    /* background-color: grey; */
}

#myColors{
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* justify-content: space-evenly; */
    align-items: center;
    /* background-color: aqua; */
}

#clear{
    width: 100px;
    height: 40px;
    background-color: grey;
    color: orange;
    box-shadow: 5px 5px 2px rgb(74, 74, 74);
    font-family: "Rampart One";
    font-size: x-large;
}

#tabs{
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    /* background-color: brown; */
}

input{
    height: 60px;
    width: 70px;
    border-radius: 40%;
    background-image: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet);
    color: black;
    font-weight: bold;
}

#bck-grnd{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: 20px; */
}


