body {
    background: radial-gradient(circle, #f9f6ff, #bcaee7);
    font-family: 'Poppins', sans-serif;
}

body::before, body::after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.15;
}

body::before {
    top: 1%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: #9175c5;
}

body::after {
    bottom: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: #9472d6;
}

.navbar {
    background-color: #b396e6;
  }

  .navbar a {
    color: #fff !important;
    font-weight: 500;
  }

  .navbar a:hover {
    color: #d1c1e0 !important;
  }

.text-purple {
    color: #6b5abd; /* Deep purple for the title */
}

.text-secondary {
    color: #000000; /* Neutral color for instructions */
}

/* Style for score containers */
.score {
    background-color: #e3dcf5;
    border: 1px solid #c4bdf0;
    border-radius: 5px;
    padding: 20px;
    width: 200px; 
    text-align: center;
    margin: 20px;
    font-size: 18px; 
    color: #4a3f7e;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.d-flex {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 20px auto;
}

/* Style for the grid cells */
.col {
    border: 2px solid #ad9ed4;
    margin: 5px;
    padding: 70px 70px;
    font-size: 24px;
    text-align: center;
    background-color: #dcd1f8;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor:pointer;
    transition: all 0.3s ease;
}


/* Style for the start button */
#startButton {
    border: 2px solid #8779d8;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 20px;
    background-color: #9586da;
    color: #ffffff;
    margin: 20px auto;
    display: block;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#startButton:hover {
    background-color: #6b5abd;
    border-color: #4c3c9f;
}

/* Center the grid vertically and horizontally */
.grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    width: 90%;
    max-width: 600px;
}

.footer {
    padding: 20px 0;
    text-align: center;
  }

.footer p {
    margin: 0;
    color: rgb(105, 105, 105);
    font-size: 12px;
}