*{
    margin: 0;
    padding: 0;
}

title {
    font-family: "jf_dot_ayu";
    color:aquamarine;
}
body{
    margin: 0;
    padding: 0;
    background-image: none;
}
.header {
    background-color: rgb(30, 30, 36);
    background-image: none;
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    width: 0px;
    height: 0px;
}
.box{
    width: 450px;
    max-width: 100%;
    border-radius: 0px;
    position: fixed;
    top: 50%;
    left: 50%;
    background: rgba(0,0,0,.8);
    padding: 15px;
    text-align: center;
    margin: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 2px solid rgba(127, 255, 212, 0.5);
}
.box-img{
    border-radius: 50%;
    width: 200px;
    height: 200px;
    transition: all .5s ease;
}
a:hover .box-img{
    content: url('/static/images/mikuPfp-hover.gif');
}
.box h1{
    font-family: "yantramanav";
    font-size: 40px;
    letter-spacing: 4px;
    font-weight: 100;
    margin: 0;
}
.box h5{
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 100;
    color: aquamarine;
}
.box p{
    text-align: justify;
    margin: 20px;
}
ul{
    margin: 0;
    padding: 0;
}
.box ul{
    max-width: 100%;
}
.box li{
    display: inline-block;
    margin: 6px;
    list-style: none;
}
.box li a{
    color: white;
    text-decoration: none;
    font-size: 50px;

}
.box li a:hover{
    color:aquamarine;
}
.backgrounds-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -5;
}
.background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: -1;
}
.background.showing{
    opacity: 1;
}

.background:not(.showing){
    opacity: 0;
}

.tooltip{
    position: relative;
    display: inline-block;
}
.tooltip .tooltiptext{
    visibility: hidden;
    width: 120px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: medium;
    text-align: center;
    padding: 5px 0;
    border-radius: 5px;

    position: absolute;
    z-index: 1;
}
.tooltip:hover .tooltiptext{
    visibility: visible;
}
.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
  }

  .content {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.flasher {
    animation: flasher 0.5s linear infinite alternate;
    font-family: "jf-dot-ayu";
}

@keyframes flasher {
    0% {
        color: rgb(11, 190, 161);
    }
    100% {
        color: white;
    }
}

#comic-container img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}