*{
    background-color: whitesmoke;
    /*margin: 0;
    padding: 0;
    */
}

.main {
    font-family:'Verdana';
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.top-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 70%;
}


.grid {
    display: grid;
    box-shadow: rgba(0, 0, 0, 0.70) 4px 6px 9px;
    width: 450px;
    height: 450px;
    margin-right: 50px;

    user-select: none;
}

.gridObj { 
    /*
    border:  1px solid black;
    background-color: lightgray;
    */
    text-emphasis: none;
}

.color-panel{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 20px;
    width: 150px;
    align-items: center;
    margin-top: 50px;
}


.colorCircle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

input[type = 'color'] {
    width: 90px;
    height: 90px;
    transition: transform 0.4s ease;
    border: none;
}

input[type = 'color']:hover {
    transform: scale(1.1);
}


input[type='color']::-webkit-color-swatch {
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.40) 1px 1px 4px;
}
  
button { 
    user-select: none;
}


.button {
    padding: 10px;
    margin: 10px;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 20px;
    width: 100%;
    transition: transform 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.40) 2px 2px 7px;
}

.button:hover {
    transform: scale(1.1);
}

input[type = 'range'] {
    appearance: none;
}


input[type='range']::-webkit-slider-runnable-track {
    border: 2px solid black;
    height: 22px;
    border-radius: 10px;

  }

input[type = 'range']::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: #2E2929;
    border-radius: 20px;
    margin-bottom: -7px;
}

#sizeSlider { 
    user-select: none;
}
.size {
    user-select: none;
}
/* Bottom */
.etchName {
    font-size: 30px;
    font-family: 'Verdana';
    user-select: none;
}
