html {
    background-image: url(./images/painting-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 120vh;
}

.bodyItems{
    display: flex;
    flex-direction: column;
    height: 90vh;
}

.btnDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: -20px;
    column-gap: 80px;
}

.containerCss {
    display:grid;
    align-self: center;
    justify-content: center;
    align-content: center;
    margin-top: 40px;
    background-color: white;
    border: 40px solid transparent;
    padding: 0px;
    border-image: url(./images/frame.jpg) 100 stretch;
    cursor: crosshair;
}
.eraserDiv {
    width: 141px;
}
.eraserBtn {
    width: 125px;
    height: auto; 
    cursor: pointer;
    border: 20px hidden;
}

.eraserBtn:active {
    transform: translateY(4px)
}

.eraserOn {
    border: 5px dashed rgb(194, 194, 77);
    border-radius: 30px;
}

.eraser {
    background-color: white;
}

.dropdownDiv {
    display:flex;
    justify-content: center;
    align-items: center;
    min-width: 229px;
    min-height: 151px;
    margin-top: -20px;
    margin-bottom: -15px;
    position: relative;
}

.colorPicker {
    width: 200px;
    height: auto;
    cursor: pointer;
}

.colorPicker:active {
    transform: translateY(4px)
}

.coloringOn {
    border: 5px dashed rgb(194, 194, 77);
    border-radius: 30px;
}

.dropdownDiv button,
.eraserMenu button {
    min-width: 165px;
    padding: 10px;
    font-size: 16px;
    font-weight: 550;
    font-family: Arial, Helvetica, sans-serif;
    border: 3px solid black;
    border-radius: 20px;
    cursor: pointer;
}

.buttonStyle {
    width: 200px;
    padding: 12px;
    font-size: 20px;
    font-weight: 550;
    font-family: Arial, Helvetica, sans-serif;
    border: 5px solid rgb(0, 0, 0);
    border-radius: 15px;
    background-color: rgb(241, 153, 76);
    cursor: pointer;
}



.buttonStyle:hover {
    background-color: rgb(248, 209, 94);
}

.buttonStyle:active {
    background-color: rgb(248, 209, 94);
    transform: translateY(4px);
}

.canvasBtn {
    width: 200px;
    padding: 12px;
    font-size: 20px;
    font-weight: 550;
    font-family: Arial, Helvetica, sans-serif;
    border: 5px solid rgb(0, 0, 0);
    background-color: aliceblue;
    border: 10px solid transparent;
    padding: 8px;
    border-image: url(./images/frame.jpg) 100 stretch;
    cursor: pointer;
}

.canvasBtn:hover {
    background-color: rgb(177, 210, 239);
}

.canvasBtn:active {
    background-color: rgb(177, 210, 239);
    transform: translateY(4px);
}

.diffColors {
    display: none;
    position: absolute;
    top: 80px;
    left: -50px;
}

.diffColors button {
    display: block;
    min-width: 165px;
}

.diffSizes {
    display: none;
    position: absolute;
    top: 80px;
    left: 115px;
}

.diffSizes button {
    display: block;
    min-width: 165px;
}
.eraserDiv {
    display: flex;
    justify-content: center;
    position: relative;
}

.eraserMenu {
    display: none;
    position: absolute;
    top: 40px;
}

.show {
    display:block;
}

.colorBlack {
    color: white;
    background-color:rgb(0, 0, 0);
}

.colorRed {
    background-color: red;
}

.colorGreen {
    background-color: green;
}

.colorBlue {
    color:rgb(224, 236, 247);
    background-color: blue;
}

.colorRainbow {
    color: rgb(246, 95, 53);
    background: url(images/rainbow.png);
}

.colorRandom,
.colorCustom {
    background-color: rgb(179, 166, 166);
}