* {
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
    flex-direction: center;
    justify-content: center;
}
  
button {
    cursor: pointer;
}
  
button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}
  
body {
    height: 100vh;
    background: linear-gradient(to right, #7feead, #fff, #7feead);
    align-items: center;
    display: flex;
}
  
.container {
    padding: 16px;
}
  
.buttons-container {
    margin-bottom: 16px;
    width: 280px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    justify-content: center; 
    box-sizing: border-box;
}
  
.buttons-container button {
    border: 2px solid;
    background: linear-gradient(to right, #00cc55, #80ffaa, #99ffe6);
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    border-radius: 4px;
    height: 32px;
    box-sizing: border-box;
    flex-direction: center;
    align-items: center;
    transition: filter 0.2s;
}

.buttons-container button:hover {
    filter: brightness(0.8);
}
  
.content-container {
    display: flex;
}
  
.grid {
    width: 200px;
    height: 400px;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
  
.grid div {
    width: 20px;
    height: 20px;
}
  
.content-right {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}
  
.mini-grid {
    width: 120px;
    height: 120px;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

  
.mini-grid div {
    width: 20px;
    height: 20px;
}
  
.content-right h3 {
    font-size: 32px;
    margin-top: 24px;
    border: none;
    background: linear-gradient(to right, #00cc55, #80ffaa, #99ffe6);
    color: #000000;
    font-weight: bold;
    border-radius: 4px;
    height: 32px;
    padding: 4px;
    display: flex;
    margin-bottom: 24px;
    
}
  
.shapePainted {
    background: red;
    border: 2px solid black;
}
  
.blue {
    background: linear-gradient(to right, #0033cc, #99b3ff);
}
  
.yellow {
    background: linear-gradient(to right, #ffcc00, #ffeb99);
}
  
.red {
    background: linear-gradient(to right, #ff3300, #ff5c33, #ff8566);
}
  
.orange {
    background: linear-gradient(to right, #b34700, #ff751a, #ff944d);
}
  
.pink {
    background: linear-gradient(to right, #cc0099, #ff80ff, #ff99ff);
}
  
  
.mobile-buttons-container {
    margin-top: 20px;
    max-width: 300px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 64px 64px;
    gap: 12px;
    justify-content: center;
}
  
.mobile-buttons-container button {
    background: linear-gradient(to right, #00cc55, #80ffaa, #99ffe6);
    border: 2px solid ;
    border-radius: 4px;
}
  
.mobile-buttons-container button span {
    color: rgb(0, 0, 0);
    font-weight: 700;
}
  
  
  /*  RESPONSIVIDADE  */
@media (max-width: 990px) {
    .mobile-buttons-container {
      display: grid;
    }
}
  
@media (max-width: 470px) {
    .content-right {
      margin-left: 16px;
    }
  
    .content-right h3 {
      font-size: 20px;
      text-align: center;
    }
  
    .score {
      display: block;
    }
}
  