:root {
    --pink: #c71864;
    --pink2: #ffc1d6;
    --yellow: #efc736;
    --yellow2: #ffe68b;
    --green: #4c7403;
    --green2: #c6fb81;
    --blue: #0049c6;
    --blue1: #167BD4;
    --blue2: #91f8fd;
    --milk: #ede9dd;
    --purple: #590d98;
}

::-webkit-scrollbar-track {
    display: none;
}

::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar-thumb {
    display: none;
}

* {
    scroll-padding: 0;
    scroll-margin: 0;
    scroll-behavior: smooth;
    cursor: url("/cursor.png"), auto;
}

@keyframes blink {
    0% {
        background: rgba(255, 230, 140, 1);
    }

    25% {
        background: rgba(255, 230, 140, 0);
    }

    50% {
        background: rgba(255, 230, 140, 1);
    }

    75% {
        background: rgba(255, 230, 140, 0);
    }
}

*:target {
    animation: blink 3s;
}

*::selection {
    background: var(--pink2);
    color: var(--milk);
}

@font-face {
    font-family: Headers;
    src: url(/GRAPHICS/fonts/oshigo.otf);
}

@font-face {
    font-family: body-bold;
    src: url(/GRAPHICS/fonts/KodomoRounded.otf);
}

@font-face {
    font-family: body;
    src: url(/GRAPHICS/fonts/Yomogi-Regular.ttf);
}

body {
    background: var(--milk);
    font-family: body;
    font-weight: bold;
    overflow: hidden;
    padding: 15px;
    color: var(--pink);
    cursor: url("/cursor.png"), auto;
}

#indexbody {
    background: url(/GRAPHICS/bg/unu.gif);
}

#indexbody .box {
    background: url(/GRAPHICS/bg/plaidb.png);
    background-size: 20%;
    border: 2px solid var(--blue);
}

a {
    width: 100%;
    color: var(--blue);
    font-weight: bolder;
    text-decoration: none;
}

a:hover {
    color: var(--pink);
    font-weight: bolder;
    text-decoration: none;
    cursor: url("/cursor.png"), pointer;
}

a:active {
    color: var(--green);
    font-weight: bolder;
    text-decoration: none;
    cursor: url("/cursor.png"), pointer;
}

a:visited {
    color: #100960;
    font-weight: bolder;
    text-decoration: none;
}

a:visited:hover {
    color: var(--pink);
    font-weight: bolder;
    text-decoration: none;
    cursor: url("/cursor.png"), pointer;
}

a:visited:active {
    color: var(--green);
    font-weight: bolder;
    text-decoration: none;
    cursor: url("/cursor.png"), pointer;
}

b {
    font-family: body-bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Headers;
    margin: 7px 0;
    color: var(--purple);
}

header {
    background: url(/GRAPHICS/headerimages/clover.png);
    border: 2px solid var(--pink);
    border-radius: 1em;
    height: 70px;
    margin: 5px;
}

aside {
    width: 20%;
}

main {
    width: 80%;
}

button {
    width: 150px;
    height: 25px;
    margin: 3px;
    font-family: body;
    background: var(--blue2);
    border: 2px solid var(--blue);
    border-radius: 5em;
    text-align: center;
    transition: all 0.2s;
}

button:active {
    transform: scale(0.8);
    cursor: url("/cursor.png"), pointer;
}

button:hover {
    transform: translateX(-5px);
    cursor: url("/cursor.png"), pointer;
}

.box {
    background: url(/GRAPHICS/bg/plaidy.png);
    background-size: 20%;
    border: 2px solid var(--pink);
    border-radius: 1em;
    padding: 20px;
    margin: 0;
    max-height: 640px;
    overflow: hidden;
}

.border {
    border-width: 5px;
    border-style: solid;
    border-image: url(/GRAPHICS/smaller/bordp.png) 17 fill round;
    padding: 5px;
    overflow: visible;
}

.in {
    background: var(--green2);
    border: 2px solid var(--pink);
    border-radius: 1em;
    padding: 10px;
    margin: 5px;
    text-align: left;
}

main .in {
    max-height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
}

aside .border,
#indexbody .border {
    border-width: 5px;
    border-style: solid;
    border-image: url(/GRAPHICS/smaller/bordb.png) 17 fill round;
    max-height: 540px;
    overflow: scroll;
}

aside .in,
#indexbody .in {
    background: var(--milk);
    border: 2px solid var(--blue1);
    color: var(--pink);
    text-align: center;
}

.flex {
    display: flex;
    margin: 0;
}

hr {
    border-top: 5px dotted var(--pink);
}

.banner {
    height: 35px;
    width: 205px;
    border: 2px solid var(--pink);
    border-radius: 0.5em;
    margin: auto;
    transition: all 0.5s;
}

.banner:active {
    transform: scale(0.8);
}

li {
    list-style-position: inside;
    list-style-image: url("/GRAPHICS/smaller/icons/clover.png");
    margin: 10px;
}

mark {
    color: var(--pink);
    background: var(--yellow2);
}

#formal,
#eye {
    list-style-image: url("/GRAPHICS/smaller/icons/eye.png");
}

#sure,
#clover {
    list-style-image: url("/GRAPHICS/smaller/icons/clover.png");
}

#please,
#heart {
    list-style-image: url("/GRAPHICS/smaller/icons/heart.png");
}

#joke,
#tongue {
    list-style-image: url("/GRAPHICS/smaller/icons/tongue.png")
}

#closeonly,
#seal {
    list-style-image: url("/GRAPHICS/smaller/icons/seal.png");
}

