* {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

#box {
  border-radius: 20px;
  width: 10px;
  height: 10px;
}
#container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

select{
  margin-top: 4px;
}

#inputs, #inputsRange {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inputCor {
  margin: 6px 0px;
  appearance: none;
  background: #efefef !important;
  border-radius: 40px;
  height: 8px;
  box-sizing: border-box;
  padding: -4px;
} 
.inputCor:hover,
.inputCor:focus{
  filter: brightness(1);
  background: #e4e4e4 !important;
}

#red{accent-color: black;}
#green{accent-color: black;}
#blue{accent-color: black;}

#fundoDesenho {
  background-color: rgb(244, 244, 245);
  width: 35vw;
  height: 35vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
#desenho {
  width: 22vw;
  height: 22vw;
  background-color: rgb(0, 0, 0);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}
#movimentoTriangulo,
#movimentoQuadrado,
#movimentoElipse {
  display: none;
}


.botaoFormato,
.botaoExtra {
  border: 0;
  border-radius: 5px;
  padding: 5px 8px;
  background-color: rgb(13, 13, 71);
  color: aliceblue;
  font-size: 1.5rem;
  transition: 0.2s;
}
.botaoFormato:hover,
.botaoExtra:hover {
  background-color: rgb(71, 71, 136);
}

#rotacaoElipse,
#rotacaoQuadrado,
#rotacaoTriangulo {
  width: 100%;
}

#inputTypeColor {
  display: none;
  width: 100%;
  padding: 15px;
  height: 200px;
}

#opcoesExtras {
  margin: 0;
  padding: 0;
  border: 2px transparent;
  width: 300px;
  background-color: rgb(13, 13, 71);
  color: aliceblue;
}
.botaoExtra {
  border-radius: 0;
  width: 100%;
  border-bottom: 2px solid rgba(131, 131, 131, 0.808);
  font-size: 2em;
  padding: 10px 5px;
  color: aliceblue;
}
.tamanhoFigura {
  padding: 10px;
  font-size: 1.5em;
}
#tamanho {
  width: 100%;
}

footer{
    margin-top: 28px;
    padding: 12px;
    text-align: center;
}
footer a{color: rgb(126, 130, 155);}
footer a:hover, 
footer a:focus{color: rgb(85, 89, 112);}

@media (width < 900px) {
  #container {
    flex-direction: column;
  }
}
