@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

/* General */
html {
    font-family: 'Montserrat', sans-serif;
    background-color: #B6E6FC;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-container {
    text-align: center;
}

#hall-of-fame {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 100%;
    margin: auto;
    display: inline-block;
    flex-direction: column;
    align-items: stretch;
}

.hidden {
    display: none;
}

.bounty {
    background-color: #61A061;
}

.info {
    font-weight: lighter;
}

#hint {
    color: #B6E6FC;
}

#game-radios {
    margin-bottom: 10px;
}

span a {
    text-decoration: none;
    color: #B6E6FC;
    display: block;
    text-align: right;
    margin-top: 10px;
}

h1 {
    color: #B6E6FC;
    background-color: rgba(0, 0, 0, 0.5);
    border: 3px solid #B6E6FC;
    border-radius: 10px;
    padding: 10px;
    max-width: 100%;
    margin: auto;
    display: inline-block;
    flex-direction: column;
    align-items: stretch;
}

/* Table */
table {
    width: 100%;
    color: white;
    border-collapse: collapse;
}

th, td {
    border: 1px solid white;
    padding: 8px;
    text-align: center;
}

td img.pmd {
    border: 2px solid black
}

td a {
    text-decoration: none;
    color: #B6E6FC;
}

th.extra-col {
    background-color: #91686F;
}

.hide-extra .extra-col {
    display: none;
}

/* Button */
button {
    appearance: button;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
    box-sizing: border-box;
    color: #B6E6FC;
    border: 3px solid #B6E6FC;
    cursor: pointer;
    font-size: 100%;
    height: 44px;
    line-height: 1.15;
    margin: 12px 0 0;
    outline: none;
    overflow: hidden;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-transform: none;
    transform: translateZ(0);
    transition: all .2s,box-shadow .08s ease-in;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
}

label:hover,
button:hover {
    color: #fff;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.2);
}

button.clicked {
    color: white;
    font-weight: bold;
}

/* Radio buttons */
input[type="radio"] {
    display: none;
}

label {
    font-size: 16px;
    position: relative;
    color: #B6E6FC;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8em;
    border-bottom: 3px solid #B6E6FC;
    padding: 5px;
}

input[type="radio"]:checked + label {
    color: white;
    font-weight: bold;
}

/* Sidebar */
.sidebar {
    text-align: center;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: #222;
    overflow-x: hidden;
    transition: 0.3s ease;
    padding-top: 60px;
}
  
.sidebar a {
    text-decoration: none;
    color: #B6E6FC;
}
  
.sidebar .closebtn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
}

.sidebar p {
    color: white;
    padding: 30px;
}

.openbtn {
    color: black;
    cursor: pointer;
}