@font-face {
    font-family: headFont;
    src: url("style/BrunoAce-Regular.ttf");
    font-weight: bolder;
}
 body {

  --animate-delay: 0.3s;
  --animate-duration: 5s;

.grow {
  transition: transform .5s;
}

.grow:hover {
  transform: scale(1.2);
  --animate-duration: 1s;
  --animate_animation: jello;
}

.growSmall {
  transition: transform .2s;
}

.growSmall:hover {
  transform: scale(1.001);
}
  
#headerTitle {
    width: 500px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffffff00;
    filter: contrast(200%) brightness(120%);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:Arial, Helvetica, sans-serif;

    
}

#menuGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: auto;
    max-width: 900px;
  }

#menuItemNull{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#menuItemGreen {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30px 30px, #00000000, #000000),
    url(Resources/noise.svg);
    background-color: #0eff56;
    filter: contrast(250%) brightness(100%);
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px black;
    
}

#menuItemRed {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30px 30px, #00000000, #000),
    url(resources/noise.svg);
    background-color: #ff0000;
    filter: contrast(250%) brightness(100%);
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px black; 
    transition: all 0.4s ease-in-out;
}

#menuItemYellow {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30px 30px, #00000000, #000),
    url(Resources/Noise/noise.svg);
    background-color: #ffba39;
    filter: contrast(250%) brightness(100%);
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px black;
}

#menuItemPurple {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30px 10px, #00000000, #000),
    url(Resources/Noise/noise.svg);
    background-color: #a200ff;
    filter: contrast(250%) brightness(100%);
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px black;
}

.hand{
  position:fixed;
    right:10px;
    bottom: 10px; 
}
  #mainContainer {
    display: block;
}

  #mainContent {
    background-color: rgba(31, 30, 30, 0.);
    overflow: hidden;
    border-radius: 0px;
    margin: 30px 200px;
  }
  
  h1   {
    color: rgb(255, 255, 255); 
    text-align: left; 
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 10px 10px rgb(255, 0, 0);
    font-size: 70pt;
    background-image: url(resources/noise.svg);
    background-blend-mode: color-dodge;
    margin: 3px 2px;
  }
    
  h2  {
    color:white; 
    text-align: center;
    text-shadow: 2px 2px black;
  }
  
  p    {
    color: white; 
    text-align: left; 
    margin: 20px;
  }

  a {
    color: rgb(201, 235, 255);
    font-size: large;
    justify-content: center;
    align-items: center;
  }
 
  a:hover {
    color: rgb(10, 55, 82);
  }
}
