body {
    padding: 0;
    margin: 0;
    background: black;
}

h1 {
    font-size: 1.5em;
    font-family: tetsubin;
    font-weight: normal;
    margin-block-start: 0;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    width: 100%;
    height: 100%;
    font-family: var(--main);
}

.main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50%;
    width: 55%;
    color: white;
    gap: 2em;
}

.yay { 
    outline: 2px dashed black;
    outline-offset: -10px;
    background: rgb(95, 38, 38);
}

.sides {
    width: 22%;
    height: calc(100% - 20px);
    padding: 10px;
}

.sides h1 {
    margin-top: .25em;
}

.sides ul {
    text-align: left;
    height: 90%;
    width: 80%;
    overflow: auto;
    scrollbar-width: none;
    padding-inline-start: 2.25em;
}

.sides ul li {
    margin: .5em 0;
    
}

.sides ul li:first-of-type {
    margin-top: 0;
}


.inner {
    padding: 10px;
    padding-left: 0;
    width: 56%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: calc(100% - 20px);
    gap: 1em;
}


.inner div p:last-of-type {
    margin-block-end: 0;
}

.thx {
    height: 33%;
    width: 90%;
    padding: 0 10px;
    overflow: auto;
    scrollbar-width: thin;
}

.thx a {
    color: rgb(255, 167, 167);
    text-decoration: none;
    transition: all .2s ease;
}

.thx a:hover {
    text-shadow: 1px 1px 3px rgb(192, 99, 99);
    text-decoration: line-through;
}

.history {
    width: 100%;
    width: 90%;
    height: 62%;
    padding: 0 10px;
    overflow: auto;
    scrollbar-width: none;
}

.version {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
    height: 200px;
    gap: 1em;
}

.history>.version:last-of-type {
    margin-bottom:0;
}

.version>.preview {
    width: 45%;
}

.version>.text {
    width: calc(55% - 20px);
    background: white;
    height: calc(100% - 20px);
    border: 1px solid black;
    color: black;
    padding: 10px;
}

.text>.ya {
    height: 100%;
    overflow: auto;
    scrollbar-width: none;
}

.ya a {
    color: rgb(155, 19, 19);
    transition: all .2s ease;
}

.ya a:hover {
    text-shadow: 1px 1px 2px rgb(139, 33, 33);
    text-decoration: none !important;
}

.version img {
    height: 200px;
    display: block;
    border: 1px solid black;
}

.version a img:hover {
    opacity: .75;
    transform: scale(.98);
}

.yea {
    color: white;
    transition: all .2s ease;
}

.yea:hover {
    text-decoration: none;
    letter-spacing: 2px;
    color: #ff9393;
    text-shadow: 1px 1px 2px rgb(255, 0, 0);
}

.tippy-box[data-theme~="custom"] {
    max-width: 250px;
    padding: 0;
    border-radius: 4px;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(1px);
    text-align: center;
  }

