.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .colorbox {
    border: 2px solid #5f5f5f;
    width: 200px;
    height: 200px;
    border-radius: 20%;
  }
  
  .action {
    margin: 10px;
  }
  
  /* button {
    cursor: pointer;
  } */

  button {
    width: 32%;
    margin-top: 5px;
    height: 40px;
    border: none;
    border-radius: 4px;
    font-size: 1.3em;
    font-weight: 500;
    letter-spacing: 2px;
    background-color: #2220;
    color: #555;
    cursor: pointer;
    
    /* transition: background-color 100ms ease-in-out; */
    /* transition: box-shadow 100ms ease-in-out; */
  }
  
  button:hover {
    background-color: #ddd;
    color: #222;
    box-shadow: #2220;
  }
  
  button:active {
    box-shadow: none;
    background-color: #bbb;
  }

  #loading {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: height 500ms ease-in-out;
  }
  