* {
    user-select: none;
}

:root {
    --color-dark:  #161616;
    --color-ocean:  #416dea;
    --color-grass: #3dd28d;
    --color-snow: #FFFFFF;
    --color-salmon: #F32C52;
    --color-sun: #feee7d;
    --color-alge: #7999a9;
    --color-flower: #353866;
    --color-smoke: #e4e4e4;
    
    --borderRadius: 36px;
  
    --font-face: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

#game, #auth {
    display: none;
}

#leaderboard {
    margin-top: 20px;
}

button {
    background-color: #416dea;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    cursor: pointer;

    text-align: center;
    white-space: nowrap;
    text-decoration: none !important;
    text-transform: none;
    text-transform: capitalize;
    margin: 2px;
    padding: 6px 12px;
    border-radius: 15px;
    border: none;
    word-wrap: break-word;
    max-width: 100%;
    height: 30px;

    &:hover {
        transition: all 150ms linear;
    
        opacity: .85;
      }
      
      &:active {
        transition: all 150ms linear;
        opacity: .75;
      }
      
      &:focus {
        outline: 1px dotted #959595;
        outline-offset: -4px;
      }
}