#text-container {
    margin-left: 75px;
}

#text-container h1 {
    font-size: 32px;
    margin-top: -75px;
}

#text-container p {
    margin-top: -20px;
    font-size: 1.286rem;
    color: grey;
}

#tables-container {
    display: flex;
    flex-direction: row;
    margin-left: 75px;
    margin-top: -50px;
    width: 90%;
    gap: 50px;
}

table {
    border: 1px solid lightgray;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.25);
    text-align: center;
    border-collapse: collapse;
    font-family: "Noto Sans", sans-serif;
    font-size: 1.143rem;
    width: 25%;
}

thead {
    background-color: black;
    color: white;

}

td {
    background-color: white;
    border: 1px solid lightgray;
    padding: 5px 5px;
}

td.gold {
    background-color: #CCAB00;
    border: 1px solid #CCAB00;
    color: white;
    font-weight: bold;

}
td.silver {
    background-color: #557177;
    border: 1px solid #557177;
    border: none;
    color: white;
    font-weight: bold;
}
td.bronze {
    background-color: #cd7f32;
    border: 1px solid #cd7f32;
    border: none;
    color: white;
    font-weight: bold;
}

.stat-table {
    width: 25%;
}

.stat-name-th {
    background-color: white;
    color: black;
    padding: 15px;
    font-size: 1.286rem;
    font-weight: 900;
}

.row-name-tr {
    color: white;
    background-image: linear-gradient(to right, #50c7da, #2b9df1);
}

th {
    padding: 5px;
}

a {
    text-decoration: none;
    color: black;
    transition: 0.1s ease-in;
}

a:hover {
    color: #555;
    text-decoration: underline;
}

