/* styles.css */
@import url(https://db.onlinewebfonts.com/c/d6ae884b0a2f1a5346717fc160db2d28?family=Roobert);

body {
    background-image: url('/img/bg.png');
    background-size: cover;
    background-blend-mode: darken;
    background-position: center;
    background-attachment: fixed;
    font-family: "Roobert";
}

.logo {
    width: 25%;
    height: 25%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 30px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-container {
    background: rgba(0, 0, 0, 0.2);
    padding-right: 8%;
    padding-left: 8%;
}

table {
    width: 100%;
    border-collapse:separate;
    border-spacing:0 5px;
    opacity: 0.95;
}

th, td {
    padding: 5px;
    text-align: center;
}

th {
    background-color: #000;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

th.hidden {
    visibility:hidden;
}

tr {
    font-size: 24px;
    font-weight: bold;
}

tr:nth-child(odd) {
    background-color: #B139F5;
    color: #fff;
}

tr:nth-child(even) {
    background-color: #a049d3;
    color: #fff;
}

td:first-child {
    background-color: black;
}

a {
    text-decoration: none;
    color: inherit;
}
  
a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

p {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

/* STATS */

#player-info {
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25), transparent);
    padding: 10px;
}

#player-image {
    margin-right: 20px;
    max-width: 100px;
}

#player-info-text {
    text-align: left;
}

#player-info-text h1 {
    margin-bottom: 0;
}

#player-info-text p {
    margin: 0;
}