body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-image: url('pageback.png');
    background-size: cover;
    background-attachment: fixed;
}
#characterTable {
    display: none;
    width: 1000px;
    margin: 20px auto;
}
table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
    font-size: 18pt;
}
th {
    background-color: #f2f2f2;
}

#header {
    width: 1000px;
    margin: 20px auto;
    text-align: center;
    font-size: 45pt;
}

#listbox {
    width: 1000px;
    margin: 20px auto;
    text-align: center;
}

#searchbox, input, button, select {
    font-size: 24pt;
}

.sbox {
    background-color: gainsboro;
    border: 5px solid gray;
    border-radius: 20px;
    margin-top: 15px;
    padding: 10px;
}

#searchbox {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 1400px;
    gap: 20px;
    margin: 20px auto;
}

#detailsbox {
    border: 5px solid #74714e;
    padding: 20px;
    width: 400px;
    position: fixed;
    display: none;
    font-size: 18pt;
    top: 5%;
    left: 50%;
    text-align: left;
    transform: translate(-50%);
    background-color: #faf2d9;
}

.clickme {
    color: steelblue;
    cursor: pointer;
}