
* {
    font-family: 'Poppins', sans-serif;
    
  }
  
  h1 {
    color: #81b29a;
    font-size: 60px;
    text-align: center;
    margin-bottom: 0px;
  }
  
  h2 {
    text-align: center;
  }
  
  /*Circuluar buttons*/
  .buttons {
    border-radius: 50px;
    height: 90px;
    width: 90px;
    border: none;
    font-size: 0;
    margin: 20px;
    cursor: pointer;
    transition: .3s;
  }
  
  .buttons:hover{
    transform: translateY(-10px)
  }
  
  .game-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .reset {
    border: none;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    margin: 10px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 18px;
    color: white;
    background-color: #81b29a;
  }
  
  .lives {
    margin-left: 10px;
    margin-bottom: 0px;
    letter-spacing: 1px;
    color: rgb(206, 11, 11);
    font-size: 30px;
  }
  
  
  #score {
    text-align: center;
    margin: 0px;
    margin-top: 16px;
    font-size: 30px;
  }
  
  .rgb_value {
    font-size: 40px;
  }
  
  .result {
    color: green;
    opacity: 0;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .show{
    opacity: 1;
    margin-top: 10px;
  }
  
  .timer {
    margin-top: 10px;
    margin-left: 10px;
    font-size: 30px;
  }
  
  .modal {
    background-color:white;
    border-radius: 5px;
    height: 500px;
    width: 700px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 100;
    font-size: 25px;
    pointer-events: none;
  }
  
  .start-modal {
    background-color:white;
    border-radius: 5px;
    height: 500px;
    width: 700px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: 500ms;
    z-index: 100;
    font-size: 25px;
    line-height: 40px;
    display: flex;
    justify-content: center;
  }
  
  .ending {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 25px;
  }
  
  
  
  .start {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
  
  #modal.display {
    opacity: 1;
    pointer-events: all;
  }
  
  #overlay{
    background-color: rgb(0,0,0,.5);
    height: 100%;
    width: 100%;
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 500ms;
    pointer-events: none;
  }
  
  #start-overlay{
    background-color: rgb(0,0,0,.5);
    height: 100%;
    width: 100%;
    position: fixed;
    opacity: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 500ms;
    pointer-events: all;
  }
  
  #overlay.display {
    opacity: 1;
    pointer-events: all;
  }
  
  #close {
    margin-top: 15px;
    margin-left: 93%;
    font-size: 30px;
    cursor: pointer;
  }
  
  .start-modal h2 {
    margin: 0px;
    margin-top: 30px;
    font-size: 40px;
  }
  
  .start-button {
    border: none;
    border-radius: 5px;
    padding: 25px;
    cursor: pointer;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
    background: #81b29a;
  }
  
  .start-button:hover{
    box-shadow: 0 0 13px 0px rgba(97, 98, 104, 0.5);
  }
  
  #start-modal.remove {
    opacity: 0;
    pointer-events: none;
  }
  
  #start-overlay.remove{
    opacity: 0;
    pointer-events: none;
  }