*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 12px;
    color:black;
    }
@font-face{
    font-family: gothic;
    src:url(fonts/gothic.ttf);
}
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 3px); }
    100%   { transform: translate(0, -0px); }    
    }
body{
   background: url(things/heaven.png);
   font-family: gothic; 
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
}
#yy{
    width: 13px;
}
#makamiku{
    width: 13rem;
}
#footer{
    grid-area: 3 / 1 / 4 / 5;
}
#header{
    position: absolute;
    margin-top: -50px;
    transform: scaleY(-1);
}
#hipic{
    width: 130px;
    float: right;
    border-radius: 5px;
    margin-right: -5px;
}
.des{
    box-shadow: 0px 0px 14px 7px rgba(255, 255, 255, 1);
    border: 1px solid black;
    border-radius: 20px;
    background: linear-gradient(0deg, white 0%, #c3e4f7 100%);
    padding: 15px;
}
h1{
    top: -0.5rem;
    position: relative;
    z-index: 1;
    animation: floating infinite 2.5s ease-in-out;
}
.wrap{
    background-color: transparent;
    width: 100%;
    max-width: 572px;
    height: 302px;
    display: grid;
    grid-gap: 12px;
    grid-template-columns: 113px 141px 141px 141px;
    grid-template-rows: 164px 126px;
}
nav{
    grid-area: 1 / 1 / 3 / 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: scroll;
}
#me{
    grid-area: 1 / 2 / 2 / 4;
    background: url(things/star-frame1.png) 0px, linear-gradient(0deg, white 0%, #c3e4f7 100%);
    background-size: cover, auto;
    padding: 25px;
    overflow-y: scroll;
    overflow-x: hidden;
}
#status{
    grid-area: 2 / 3 / 2 / 5;
    background: white;
}
#pic{
    grid-area: 1 / 4 / 1 / 5;
    display:flex;
    justify-content: center;
    padding: 10px;
    z-index: 1;
}
#picpic{
    width: 122px;
    object-fit: cover;
    border-radius: 10px;
}
#pic img:hover{
    transform: scale(1.3);
}
#index{
    grid-area: 2 / 2 / 2 / 3;
    overflow-y: scroll;
    overflow-x: hidden;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
nav a{
    text-decoration: none;
}
nav a:hover {
    /* background-color: #e5a8cc; */
    color: #1d19f8;
    font-style: italic;
}
nav::-webkit-scrollbar {
    display: none;
  }
#me::-webkit-scrollbar {
    display: none;
  }
#index::-webkit-scrollbar {
width: 5px;
}
#index::-webkit-scrollbar-track {
background-color: transparent;
-webkit-border-radius: 10px;
border-radius: 10px;
}
#index::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: white;
border: 1px solid black;
}
summary {
list-style: none;
}
details a{
    line-height: 2rem;
}
@keyframes open {
0% { opacity: 0 }
100% { opacity: 1 }
}
details[open] summary~* {
animation: open .5s
}
ul{
    list-style-type:none; 
    list-style-position: inside
}
#yaoi p{
    font-size: 10px;
}