.headingWelcome {
    background: -webkit-linear-gradient(300deg, #93F5EC 20%, #A77BF3 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
    margin-top: 80px;
    text-align: center;
    width: 100%;
    transition: all 0.3s;
}


@media screen and (max-width: 600px) {
    .headingWelcome {
        margin-top: 90px;
        font-size: 3rem;
        transition: all 0.3s;
    }
}

.instructionText {
    color: #ADBAC7;
    font-size: 1.6rem;
    font-weight: normal;
    text-align: center;
    width: 100%;
    margin: 40px auto;
    transition: all 0.3s;
}


form {
    width: 50%;
    margin: 200px 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border: 5px ridge white;
}



label {
    color: white;
    font-weight: bold;
}

form input {
    background: rgba(255, 255, 255, 0.19);
    width: 30%;
    padding: 10px;
    border-radius: 20px;
    color: white;
}


#score-comparison{
    border-radius: 5px;
    font-size: 20px;
    background-color: #3e8bb7;
    color: #fff;
}

.submitStats {
    display: block;
    width: 15%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #A77BF3;
    color: #93F5EC;
    font-size: 1em;
    font-weight: bolder;
    cursor: pointer;
}

.submitStats:hover{
    background-color: #93F5EC;
    color: #A77BF3;
    cursor: pointer;
}

#dataContainer {
    margin: 0 auto;
    height: 600px;
    overflow-y: auto; /* Enable vertical scrolling */
}

#dataContainer {
    margin-bottom: 100px;
    filter: drop-shadow(0px 0px 250px #3e8bb7);
}

.game-table {
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
}

.game-table th {
    position: sticky; /* Make the <th> sticky */
    top: 0; /* Position it at the top */
    z-index: 999; /* Set a higher z-index to keep it on top of <td> elements */
    background-color: rgb(255, 255, 255);
    color: black;
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.game-table td {
    color: white;
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.game-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.04);
}

@media (max-width: 768px) {
    .game-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}


