body {
    font-family: 'Kanit', sans-serif;
    background-color: #7e4848;
    color: #ffffff;
    margin: 0;
    /* margin-left: 7px; */
    /* margin-right: 7px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
    gap: 0px;
    overflow-x: hidden;
}
#content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    background-color: #673a3a;
    min-height: 100vh;
    padding-bottom: 200px;
}
#content > * {
    margin: 3px 0;
    align-items: center;
    text-align: center;
}
hr {
    width: 80%;
    border: 0;
    border-top: 1px solid #FFFFFF30;
    margin: 10px 0;
}
a {
    color: #ffcc00;
}
.art {
    image-rendering: pixelated;        /* Chrome, Firefox */
    image-rendering: crisp-edges;      /* Older Safari, fallback */
    image-rendering: -moz-crisp-edges; /* Legacy Firefox */
    -ms-interpolation-mode: nearest-neighbor; /* IE */
    max-width: 100%;
    height: auto;
}
#colors {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 0px;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
.color {
    display: flex;
    flex-direction: row;
    margin-right: 10px;
    vertical-align: middle;
}
.color-box {
    width: 35px;
    height: 25px;
    border-radius: 5px;
    display: inline-block;
    border: 1.5px solid #7f7f7f;
    margin: 5px;
    vertical-align: middle;
}
.color-name {
    font-size: 15px;
    margin: 0px;
    margin-top: 7px;
    margin-left: 2px;
    color: #ffffff;
    min-width: 80px;
    text-align: left;
    vertical-align: middle;
}
#overlay-pro-code {
    background-color: #00000040;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
}
button {
    background-color: #00000040;
    color: white;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    padding: 4px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Kanit', sans-serif;
}
#alert {
    background-color: #4a7c85;
    font-size: 1.1em;
    padding: 3px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    z-index: 0;
}
#alert p {
    margin: 0;
}
#alert-close-btn {
    cursor: pointer;
    font-size: 1.2em;
    margin-left: 10px;
    position: absolute;
    right: 15;
    top: 0;
}
.hidden {
    display: none;
}
@keyframes brighten {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
    100% { filter: brightness(1); }
}