@font-face {
    font-family: jest;
    src: url(../../assets/Jest-Regular.otf);
}


body {
    margin: 0;
    color: white;
    font-family: Jest, sans-serif;
    font-size: 1.7rem;
    line-height: 25px;
    text-shadow: 0 0 3px black;
}

p,h1,h2,h3,h4,h5,h6, ul, ol {
    margin: 25px 0;
}

li {
    height: 25px;
}

a {
    color: inherit;
    background: rgba(255, 255, 0, 0.4);
    text-decoration: none;
}

a:hover {
    background: rgba(255, 255, 0, 0.6);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url("assets/bg.webp") center center;
    z-index: -1;
    pointer-events: none;
}

.container {
    background: url("assets/line.svg") black;
    background-size: auto 25px;
    margin: auto;
    max-width: 1100px;
    min-height: 100vh;
    box-sizing: border-box;
}

.miku {
    background: rgba(134, 206, 203, 0.75);
    padding: 25px 40px 25px 65px;
}

.transition {
    height: 200px;
    background: linear-gradient(rgba(134, 206, 203, 0.75), rgba(212, 106, 131, 0.75));
}

.teto {
    background: rgba(212, 106, 131, 0.75);
    padding: 25px 40px 25px 65px;


}

.transition-2 {
    height: 200px;
    background: linear-gradient(rgba(212, 106, 131, 0.75), rgba(244, 211, 90, 0.75));
}

.the-yellow-one {
    background: rgba(244, 211, 90, 0.75);
    padding: 25px 40px 25px 65px;


}

.full-width-img {
    transform: rotate(1deg);
    display: block;
    width: 100%;
    height: 250px;
    max-width: 800px;
    object-fit: contain;
    margin: auto;
}

details {
    border: 2px solid black;
    padding: 0 10px 21px;
    margin: 25px 0;
    background: rgba(56, 215, 83, 0.5);
}


summary {
    height: 25px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 5px 13px;
    margin: 0 -10px;
}

.sticker {
    transition: transform 65ms ease-out;
    float: right;
    width: 300px;
}

.sticker:hover {
    transform: rotate(0) scale(110%) !important;
}

#rabbitHole {
    text-decoration: underline;
}

.rabbit {
    --flipped : 100%;
    --translate : 200px;
    position: fixed;
    bottom: -190px;
    left: 30px;
    width: 200px;
    animation: rabbit 1s ease-in-out;
    transform: scale(var(--flipped), 100%);
}

iframe {
    vertical-align: bottom;
    margin-bottom: 5px;
    max-width: 100%;
    height: 270px;
    aspect-ratio: 16/9;

}

.back-btn {
    transition: filter 100ms;
    position: fixed;
    left: 20px;
    top: 20px;
    padding: 12px;
    border-radius: 100px;
    background: white;
    color: black;
    text-decoration: none;
    box-shadow: 0 0 10px 0 black;
}

.back-btn:hover {
    filter: invert();
    background: white;
}

@keyframes rabbit {
    from {
        bottom: -190px;
    }
    50%  {
        bottom: 100px;
    }
    to {
        bottom: -190px;
        transform: translate(var(--translate)) scale(var(--flipped), 100%) rotate(30deg);
    }
}

@media screen and (max-width: 600px) {
    .sticker {
        width: 150px;
    }
    iframe {
        height: 195px;
    }

}