/* Algemeen style  */
body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background: url(img/redraceachtergrond.jpg) no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: block;
    margin: 0 auto;
    color: white;
}

.title {
    margin-top: 50px;
}

.indexbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Scoreboard style */
.scoreboard {
    background-color: #333;
    width: 500px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
    color: white;
}

th {
    color: white;
    background-color: #555;
    font-size: 22px;
    padding: 15px;
    text-align: center;
}

td {
    padding: 15px;
    font-size: 18px;
    text-align: center;
}

/* Rank column*/
td:first-child {
    width: 50px;
    background-color: #e60000;
    color: white;
    font-weight: bold;
    border-right: 4px solid black;
}

/* Oyuncu adı */
td:nth-child(2) {
    background: #a00;
    color: white;
    width: 100%;
}


/*BUTTONS */

.btn {
    background-color: #ff6600;
    color: white;
    font-size: 18px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.btnn {
    background-color: #a74300;
    color: rgb(129, 129, 129);
    font-size: 18px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.5);
    transition: 0.6s;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}