*{
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: "Open Sans";
}

.amarelo{
  background-color: rgb(243, 173, 43);
  transition: all 0.25s ease-in-out;
}

.vermelho{
  background-color: rgb(175, 40, 40);
  transition: all 0.25s ease-in-out;
}

.roxo{
  background-color: rgb(109, 29, 109);
  transition: all 0.25s ease-in-out;
}

.rosa{
  background-color: rgb(255, 111, 156);
  transition: all 0.25s ease-in-out;
}

.azul{
  background-color: rgb(0, 191, 255);
  transition: all 0.25s ease-in-out;
}

.verde{
  background-color: rgb(0, 187, 45);
  transition: all 0.25s ease-in-out;
}



button{
  padding: 5px 10px;
  border: 0px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 22px;
  font-weight: 300;
  margin: 0% 10px;
}

.container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 90vw;
  text-align: center;
}