html,
body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    background-image: url(layout/stars.jpeg);
    background-color: #2d3a80;
    font-family: sans-serif;
    font-size: 13px;
    color: #fff;
    text-align: justify;
    letter-spacing: 1px;
}

.box1 {
    width: 735px;
    min-height: 100%;
    margin: 72px auto;
}

.linkity {
    width: 735px;
    line-height: 30px;
    text-align: center;
}

.linkity a {
    width: 170px;
    display: inline-block;
    background-color: #230023;
    color: #fff;
    -moz-border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #230023;
}

.linkity a:hover {
    background-color: rgba(35, 0, 35, 0.4);
    border-bottom: 1px solid #fff;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
}

.animes {
    width: 719px;
    min-height: 100%;
    border: 1px solid #230023;
    margin-right: 4px;
    padding: 8px;
    background-color: rgba(35, 0, 35, 0.4);
    margin-bottom: 4px;
}

a {
    color: #daafe9;
}

.toplinks{
    color: #fff;
    background: #000;
    text-decoration: none;
    font-style: italic;
}

a:hover {
    background: rgb(35, 0, 35);
}

.animebox {
    display: grid;
    grid-template-columns: 200px 511px;
    grid-template-rows: 280px;
    gap: 15px 8px;
    margin-bottom: 16px;
}

.animebox .ab-imageContainer {
    width: 200px;
    height: 283px;
    float: left;
    position: relative;
}

.animebox .ab-imageContainer .ab-image {
    width: 200px;
    height: 283px;
    object-fit: cover;
    float: left;
    position: absolute;
}

.animebox .ab-imageContainer .recTriangle{
    left: 0px;
    top: 0px;
    position: absolute;
    display: block;
    height: 64px;
    width: 64px;
    float: left;
}

.animebox .ab-info {
    width: 511px;
    position: relative;
}

.animebox .ab-info .ab-header {
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    font-style: bold;
    display: block;
    border-bottom: 1px solid #a481b0;
    letter-spacing: 2px;
    margin: 0px 0px 8px 0px;
    background: url(layout/stars.jpeg);
    min-height: 30px;
    max-height: 60px;
}

.animebox .ab-info .ab-text {
    width: 503px;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-color: rgb(164, 159, 185) rgb(97, 52, 97);
    scrollbar-width: thin;
    padding-right: 8px;
}

.animebox .ab-info .footer{
    display: flex;
    flex-direction: row;
    width: 511px;
    position: absolute;
    bottom: 0px;
}

.animebox .ab-info .footer .ab-scoring {
    position: absolute;
    left: 0px;
    bottom: 0px;
    max-width: 423px;
}

.animebox .ab-info .footer .ab-links {
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
}

.animebox .ab-info .footer .ab-links .external-link{
    height: 16px;
    width: 16px;
    display: block;
    margin-left: 8px;
}

.searchBar {
    border: 2px solid rgb(117, 35, 150);
    background-color: #170f18;
    color: white;
    border-radius: 4px;
    width: 430px;
    height: 16px;
    margin-left: 4px;
}

.filterBar {
    display: grid;
    grid-template-columns: 16px 447px 120px 120px;
    grid-template-rows: 32px;
    gap: 15px 8px;
    grid-auto-flow: row;
    margin-top: 4px;
}

input[type=checkbox]:checked{/* <-- Style its checked state */
  accent-color: rgb(224, 51, 224);
}

.siteInfoBox{
    width: 24px;
    height: 24px;
    display: block;
    background-color: rgb(32, 10, 32);
    text-align: center;
    font-size: 19px;
    position: relative;
    box-shadow: inset 0 0 0 1px rgb(117, 35, 150);
    z-index: 999;
}

.popupBox{
    position: absolute;
    left: 28px;
    height: 600px;
    width: 630px;
    z-index: -99;
    top: -1px;
    background-image: url(layout/stars.jpeg);
    background-color: #333333;
    background-blend-mode: darken;
    border: solid rgb(117, 35, 150) 1px;
    padding: 16px;
    font-size: 18px;
    visibility: hidden;
}

.siteInfoBox:hover {
    border-right: 6px solid transparent
}

.siteInfoBox:hover .popupBox{
    visibility: visible;
    z-index: 99;
}

/* https://stackoverflow.com/a/70820783 */
.spoiler{
  background-color: gray;
  color: transparent;
  user-select: none;
}
.spoiler:active{
  background-color: inherit;
  color: inherit;
}