@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
   body {
       text-align: center;
       background-color: #121212;
       color: white;
       font-family: 'Jost', sans-serif;
   }

   .game-container {
       display: grid;
       grid-template-columns: repeat(3, 100px);
       gap: 20px;
       justify-content: center;
       margin-top: 20px;
   }

   .button {
       width: 70px;
       height: 70px;
       background-color: #d9d9d9;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 16px;
       cursor: pointer;
       transition: background 0.3s;
       box-shadow: 0 0 10px #000;
   }

   .active {
       background-color: yellow !important;
       box-shadow: 0 0 20px yellow;
   }

   #startBtn {
       margin-top: 20px;
       padding: 10px 20px;
       font-size: 20px;
   }

   #timer {
       font-size: 20px;
       font-weight: bold;
       margin-top: 10px;
   }

   canvas#backgroundCanvas {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       z-index: -2;
   }

   .content {
       position: relative;
       text-align: center;
       color: white;
       font-family: Arial, sans-serif;
       /* padding: 50px; */
       margin-top: 10%;
   }

   #secondFieldset {
    display: none;
}

.next-btn {
    background: linear-gradient(to bottom, #ffcc00 0%, #ff9900 100%);
    border: 2px solid #cc8800;
    color: black;
    font-weight: bold;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;

}

.next-btn:hover {
    background: linear-gradient(to bottom, #ffdb4d 0%, #ffb84d 100%);
    border-color: #b36b00;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

.btn-bottom{
    position: absolute;
    bottom: 10%;
    /* right: 15%; */
}

.heading-h4{
   color: #ffc000;
}

.start-div{
    position: absolute;
    right: 26px;
    top: 0;
}