

#mainBlock
{
    font-family: sans-serif;
    text-align: center;
    border: 3px solid black;
    border-radius: 10px;
    margin: 100px auto;
    height: 200px;
    width: 600px;
    background-color: lavender;
}

.button {
    background-color: yellow;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
  }

  .lottoButton {
    background-color: crimson; 
    color: white; 
    border: 2px solid black;
    border-radius: 10px;
    
  }
  
  .lottoButton:hover {
    background-color: green;
    color: orange;
  }

  .euroMillionsButton {
    background-color: gold; 
    color: black; 
    border: 2px solid black;
    border-radius: 10px;
    
  }
  
  .euroMillionsButton:hover {
    background-color: #4CAF50;
    color: white;
  }

  .thunderBallButton {
    background-color: darkorchid; 
    color: white; 
    border: 2px solid black;
    border-radius: 10px;
    
  }
  
  .thunderBallButton:hover {
    background-color: #4CAF50;
    color: white;
  }

  div.balls
  {
    display: flex;
    max-width: 700px;
    margin: auto;
    font-family: 'M Plus 1p';
    font-weight: 800;
    color: var(--fontColor);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 0.5px;
    font-size: 25px
}
  
 p.circle
{
    display: flex;
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    border: var(--borderStyle);
    background: var(--ballColor);
    align-items: center;
    justify-content: center;
    box-shadow: inset -25px -25px 40px rgba(0, 0, 0, 0.415);
  }
  