@keyframes spin {
    0%, 100% {transform: rotateZ(-60deg);}
    50% {transform: rotateZ(60deg);}
}
@keyframes link {
    0%, 100% {transform: translateX(0px);}
    50% {transform: translateX(5px);}
}
@keyframes linkrev {
    0%, 100% {transform: translateX(5px);}
    50% {transform: translateX(0px);}
}
::-webkit-scrollbar{
    display: none;
}
:root {
    --bg: rgb(255, 241, 214);
    --ink: black;
    --wit: white;
    --red: red;
    --yelo: rgb(255, 190, 0);
    --blu: blue;
}
body {
    display: flex;
    background: var(--bg);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: black;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color linear 0.2s;
}
a:hover, a:active {
    color: white;
}
.arrow {
    position: absolute;
    top: 0;
    left: 0;
    margin: 50px;
    transition: filter ease-in-out 0.1s;
    clip-path: inset(0 8px 0 0);
    z-index: 10;
}
.arrow:hover, .arrow:active {
    filter: invert(100%);
}
.social {
    position: absolute;
    text-align: right;
    font-size: 12px;
    right: 50px;
    top: 0;
    margin-top: 48px;
    z-index: 10;
}
.contact {
    position: absolute;
    text-align: right;
    font-size: 12px;
    right: 50px;
    bottom: 0;
    margin-bottom: 50px;
    padding-bottom: 4px;
    z-index: 10;
    cursor: pointer;
    transition: ease-in-out .15s;
}
.contact::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100vw;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    clip-path: inset(0 0 0 100px);
    pointer-events: none;
}
.contact:hover {
    text-shadow: 0 0 10px var(--ink);
}
.about {
    position: absolute;
    text-align: left;
    font-size: 12px;
    left: 50px;
    bottom: 50px;
    padding-bottom: 4px;
    z-index: 10;
}
.sheet {
    position: relative;
    width: 247px;
    max-width: 88vw;
}
.margin-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: var(--red);
}
.sheettitle {
    margin: 0 0 3px 25px;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.3px;
    color: black;
}
.spin {
    display: inline-block;
    animation: spin ease-in-out 2s infinite;
}
.rule {
    height: 1px;
    background: var(--yelo);
}
.rulered {
    height: 1px;
    background: var(--blu);
}
.row {
    box-sizing: border-box;
}
.row-intro {
    padding: 3px 10px 3px 25px;
}
.intro {
    margin: 0;
    font-size: 12px;
    font-style: italic;
    line-height: 17px;
    color: black;
}
.row-entry {
    padding: 3px 0px 3px 25px;
}
.entry {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    font: inherit;
    color: black;
    text-align: left;
    cursor: pointer;
}
.entry-line {
    min-width: 0;
    font-size: 12px;
    line-height: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.entry-caret {
    flex-shrink: 0;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    transition: transform ease .25s;
}
.row-entry.open .entry-caret {
    transform: rotate(45deg);
}
.entry-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height ease-in-out .3s;
}
.row-entry.open .entry-detail {
    max-height: 90px;
}
.entry-desc {
    margin: 6px 0 0;
    font-size: 11.5px;
    line-height: 15px;
    color: black;
}
.entry-desc a {
    display: inline-block;
    animation: link linear 2s infinite;
}
.entry-desc a.reverse-anim {
    animation: linkrev linear 2s infinite;
}
.row-outro {
    padding: 3px 10px 3px 25px;
}
.outro {
    margin: 0;
    font-size: 11.5px;
    line-height: 15px;
    color: black;
}
.outro a {
    color: black;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: ease-in-out .15s;
}
.outro a:hover, .outro a:active {
    text-shadow: 0 0 10px black;
}

@media (max-width: 700px) {
    .social {
        display: none;
    }
    .arrow {
        margin: 10px;
        width: 20px;
        height: 20px;
        clip-path: inset(0 6px 0 0);
    }
    .contact {
        right: 10px;
        margin-bottom: 10px;
    }
    .about {
        left: 10px;
        bottom: 10px;
    }
    .sheet {
        width: 50vw;
        max-width: 50vw;
    }
    .margin-line {
        left: 14px;
    }
    .sheettitle {
        margin: 0 0 3px 20px;
        font-size: 16px;
    }
    .row-intro {
        padding: 6px 8px 6px 20px;
    }
    .row-entry {
        padding: 6px 4px 6px 20px;
    }
    .row-outro {
        padding: 6px 8px 6px 20px;
    }
    .intro {
        font-size: 13px;
        line-height: 19px;
    }
    .entry-line {
        white-space: normal;
        font-size: 12.5px;
        line-height: 17px;
    }
    .row-entry.open .entry-detail {
        max-height: 130px;
    }
    .entry-desc {
        font-size: 12px;
        line-height: 17px;
    }
    .outro {
        font-size: 12.5px;
        line-height: 17px;
    }
}
