body{
    background: linear-gradient(125deg, red, green, blue);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#canvas1{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}

#myButton{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%; /* Make the button circular */
    width: 100px; /* Adjust the width of the button */
    height: 100px; /* Adjust the height of the button */
    text-align: center;
    text-decoration: none;
    font-size: 23px;
    cursor: pointer;
    background: linear-gradient(125deg, red, green, blue);
    color: black;
    border: none;
}

#myEButton{

    display: none;
    position: absolute;
    top: 15.5%;
    left: 6.5%;
    transform: translate(-50%, -50%);    
    text-decoration: none;
    border-radius: 50%;
    width: 80px; /* Adjust the width of the button */
    height: 80px; /* Adjust the height of the button */
    font-size: 16px;
    cursor: pointer;
    background:black;
    color:white;
    border:none;
}



#myCButton{
    display: none;
    position: absolute;
    top: 15.5%;
    left: 6.5%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    border-radius: 50%;
    width: 80px; /* Adjust the width of the button */
    height: 80px; /* Adjust the height of the button */
    font-size: 16px;
    cursor: pointer;
    background:black;
    color:white;
    border:none;
}


#myButton:hover {
    background: linear-gradient(125deg, red, green, blue);
    color: white;
  }

  #myCButton:hover {
    background-color: black;
    color: green;
    border: solid green;
  }

  #myEButton:hover {
    text-align: center;
    color: red;
    border: solid red;
  }



@keyframes flickerAnimation {
    0% { opacity: 0.9; }
    50% { opacity: 0.45;}
    100% { opacity: 0.9; }
  }
  
.flicker {
    animation: flickerAnimation 0.75s infinite;
  }

.fade-out {
    opacity: 0;
    transition: opacity 2s ease-out; /* Adjust the duration and timing function as needed */
}

.reveal {
    opacity: 1;
    transition: opacity 2s ease-in; /* Adjust the duration and timing function as needed */
}


#collisionCanvas{
    opacity:0;
}
