@font-face {
    font-family: headFont;
    src: url("style/BrunoAce-Regular.ttf");
    font-weight: bolder;
}
 body {
  background: #a39eff;
  background-image: url("Resources/bg.JPG");
  background-size: 100% auto;

  --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: 250px;
    border-radius: 50%;
    background: radial-gradient(circle at 100px 80px, #00000000, #000),
    url(Resources/Noise/noise.svg);
    background-color: #5cabff;
    filter: contrast(200%) brightness(120%);
    margin: auto;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-row: 1 2;
    
}

#menuGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 170px);
    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/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/noise.svg);
    background-color: #ff3939;
    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;
}

  #mainContainer {
    display: block;
}

  #mainContent {
    background-color: rgba(31, 30, 30, 0.);
    overflow: hidden;
    border-radius: 50px;
    margin: 30px 200px;
  }
  
  h1   {
    color: white; 
    text-align: center; 
    font-family: headFont;
    text-shadow: 2px 2px black;
    
  }
    
  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);
  }
 
  a:hover {
    color: rgb(10, 55, 82);
  }
}
