:root {
  --shadow-color: 286deg 36% 56%;
  --shadow-elevation-low:
    0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.34),
    0.4px 0.8px 1px -1.2px hsl(var(--shadow-color) / 0.34),
    1px 2px 2.5px -2.5px hsl(var(--shadow-color) / 0.34);
  --shadow-elevation-medium:
    0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.36),
    0.8px 1.6px 2px -0.8px hsl(var(--shadow-color) / 0.36),
    2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-color) / 0.36),
    5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.36);
  --shadow-elevation-high:
    0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.34),
    1.5px 2.9px 3.7px -0.4px hsl(var(--shadow-color) / 0.34),
    2.7px 5.4px 6.8px -0.7px hsl(var(--shadow-color) / 0.34),
    4.5px 8.9px 11.2px -1.1px hsl(var(--shadow-color) / 0.34),
    7.1px 14.3px 18px -1.4px hsl(var(--shadow-color) / 0.34),
    11.2px 22.3px 28.1px -1.8px hsl(var(--shadow-color) / 0.34),
    17px 33.9px 42.7px -2.1px hsl(var(--shadow-color) / 0.34),
    25px 50px 62.9px -2.5px hsl(var(--shadow-color) / 0.34);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #F1CFFC;
    font-family: 'Comme', sans-serif;
}

#grid-container {
    width: 500px;
    height: 500px;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    flex-direction: row;
    background-color: white;
    box-shadow: var(--shadow-elevation-medium);
}

.grid-square{
    background-color: white;    
}

#title {
  font-size: 110px;
  font-family: 'Pacifico', cursive;
  font-weight: lighter;
  text-shadow: 2px 2px 2px #CE0860;
}

#main-content {
  display: flex;
  gap: 10px;
}

.btn {
  height: 30px;
  width: 125px;
  font-family: 'Comme', sans-serif;
}

#preto {
  background: black;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: 0px;
}

#multicolor {
  background: rgb(63,94,251);
  background: linear-gradient(90deg, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
  color: white;
  border: 0px;
}

#preto, #multicolor:hover {
  cursor: pointer;
}

.slider:hover{
  cursor: pointer;
}

#squareValue {
  text-align: center;
}

#left-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

#footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}