* {
    box-sizing: border-box;
    font-family: "Gen Interface JP", sans-serif;
    background-color:rgb(10, 20, 20);
    color: white;
    text-align: center;
    cursor: wait;
}
@font-face {
font-family:'misakigothic';
src: url('./fonts/misaki_gothic_2nd.ttf') format('truetype');
}
h1 {
    font-family: 'misakigothic';
    font-size: 32px;
    letter-spacing: 4px;
}
h1:hover {
    color: orange;
    transition: all 10s;
}
h1:active {
    font-family: 'Wingdings', 'Webdings', 'Zapf Dingbats', 'misakigothic';
}
h2:hover {
    color: red;
    transition: all 10s;
}
a.content {
    display: block;
    padding: 8px;
    font-size: large;
    color: goldenrod;
    text-decoration: underline rgba(218, 165, 32, 0.5);
    background-color: rgb(10, 22, 22);
    border: 2px solid rgb(10, 20, 20);
    cursor: pointer;
    transition: all 0.1s;
}
a.content:hover {
    color: gold;
    font-size: x-large;
}
.specialthanks {
    font-size: x-small;
    color: rgba(255, 255, 255, 0.3);
    margin-top: -8px;
}
.understoodbox {
    width: fit-content;
    margin: 64px auto;
    border: 2px solid goldenrod;
    border-radius: 8px;
    padding: 8px;
}
.understood {
    text-align: left;
    position: relative;
    background-color: transparent;
    left: 30px;
    transition: all 0.5s;
    cursor: help;
}
.understoodbox:hover {
    border: 2px solid white;
}
.understood:hover {
    left: 0;
}
.releasenotes {
    margin-bottom: 64px;
    color: rgb(10, 22, 22);
}
.releasenotesli, .releasenotes {
    text-align: left;
    color: rgb(10, 22, 22);
}
.releasenotes:hover, .releasenotesli:hover {
    color: rgba(255, 255, 255, 0.5);
    transition: all 1s;
}
.understood:active, h2:active, .specialthanks:active, .releasenotesli:active, .releasenotes:active {
    font-family: misakigothic;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgb(10, 20, 20);
    padding: 10px;
    cursor: not-allowed;
}
.footercontents {
    text-align: left;
    cursor: not-allowed;
}
.footercontents:hover {
    color: blue;
    transition: all 10s;
}
.footerforphone {
    display: none;
    cursor: not-allowed;
}
@media (max-width: 600px) {
    .footerforphone {
        display: inline-block;
        text-align: center;
        margin-right: 16px;
    }
    .footercontents {
        display: none;
    }
}
.jumpscarebox {
    margin: 256px auto;
}
.jumpscare {
    font-size: 100px;
    font-weight: x-large;
    position: relative;
    bottom: 0;
    transition: all 0.5s;
    cursor:vertical-text;
}
.jumpscare:hover {
    bottom: 200px;
}
a.behind {
    text-decoration: none;
}
.footercontents2 {
    text-align: right;
    margin-right: 16px;
    cursor: not-allowed;
}