/* Clean Slate */
* {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Font Setup */
@font-face {
    font-family: kh-menu;
    src: url(../../KHMenu.otf);
}

/* Material Themes */
.blazing {
    background-color: darkorange;
    color: black;
}

.frost {
    background-color: powderblue;
    color: black;
}

.lightning {
    background-color: gold;
    color: black;
}

.lucid {
    background-color: slategray;
    color: white;
}

.power {
    background-color: darkblue;
    color: white;
}

.dark {
    background-color: rgb(27, 27, 27);
    color: white;
}

.dense {
    background-color: dimgray;
    color: white;
}

.twilight {
    background-color: ghostwhite;
    color: black;
}

.mythril {
    background-color: navy;
    color: white;
}

.bright {
    background-color: forestgreen;
    color: white;
}

.energy {
    background-color: indigo;
    color: white;
}

.serenity {
    background-color: rgb(231, 197, 103);
    color: black;
}

.remembrance {
    background-color: lightgreen;
    color: black;
}

.tranquility {
    background-color: palegoldenrod;
    color: black;
}

.orichalcum {
    background-color: aquamarine;
    color: black;
}

/* Layout */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(16, 16, 24);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    width: fit-content;
}

.synth-card {
    display: flex;
    flex-direction: column;
    font-family: kh-menu;
    width: 128px;
    border-radius: 8px;
    padding: 4px;
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4px;
    height: 2em;
}

.card-title > h1 {
    font-size: 15px;
}

.image-container {
    flex: 0 0 min-content;
    background-color: black;
    border-radius: 8px;
}

synth-card > * {
    flex: 0;
}

.synth-card > table {
    flex: 1;
    width: 100%;
    font-size: 10px;
    background-color: black;
    color: white;
    border-radius: 8px;
    padding: 4px;
    margin-top: 4px;
}

th {
    text-align: left;
}

td {
    text-align: right;
}