:root {
    --ink: #060D22;
    --charcoal: #202731;
    --dusk: #44567A;
    --slate: #a6b8cd;
    --alice: #D3DDE9;
    --rose: #751A36;
    --light-rose: #CF4163
}

/* LAYOUT */
body {
    background-image: url(media/pierrot-clouds.gif);
    background-repeat: tile; 
    background-attachment: fixed;
    color: var(--slate);
    
    /* custom cursor */
    cursor: url(media/balloondogcursor.gif), auto;
}
a:hover {
    cursor: url(media/balloondoghover.gif), pointer;
}

#container {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
}

#main {
    background-color: var(--charcoal);
    background-clip: border-box;
    top: 0;
    min-height: 100%;
    height: auto;
    width: 600px;
    margin: 0 20px 0 40px;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-image: url(media/pierrot-vrtualseraph-82px.png) 82 round;
    box-shadow: black 0 0 10px 1px, inset 0 0 10px black;
}

#main-inner {
    padding: 10px 30px 60px 30px;
    background-image: url(media/pierrot-pixopix-awning.png);
    background-repeat: no-repeat;
    background-size: 100%;
}


.emphasis-box {
    color: var(--ink);
    display: block;
    background: url(media/pierrot-swirly.gif);
    background-size: 70px;
    background-attachment: fixed;
    background-clip: padding-box;
    border-radius: 20px;
    width: 80%;
    margin: 0 auto;
    padding: 10px 20px;
    border: dotted 4px var(--alice);
    transform: rotate(-2deg);
}
.emphasis-box::before {
    position:absolute;
    left: -20px;
    top: -20px;
    transform: rotate(-10deg);
    display:inline-block;
    margin-right:10px;
    content: url(media/pierrot-die.png);
    width:33px;
    vertical-align:middle;
}
.emphasis-box::after {
    position:absolute;
    right: 0;
    bottom: -20px;
    transform: rotate(30deg);
    display:inline-block;
    margin-right:10px;
    content: url(media/pierrot-die-2.png);
    width:33px;
    vertical-align:middle;
}

#navi ul {
    padding: 0
}
#navi li {
    display: block;
}

#navi a {
    transition: 0.5s;
    text-decoration: none;
    font-family: "Sancreek", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5em;
    color: var(--light-rose);
    text-shadow: black 1px 1px 2px;
    -webkit-text-stroke: 1px var(--ink)
}
   
#navi a:hover{
    letter-spacing: 7px;
    color: var(--rose);
    -webkit-text-stroke: 1px var(--ink);
}

#right {
    position: fixed;
    bottom: 30px;
    width: 300px;
    left: 800px;
}

#box {
    background-color: var(--charcoal);
    border-radius: 20px;
    padding: 20px;
    box-shadow: black 2px 2px 10px 1px;
}

#box h3 {
    padding: 0;
    margin: 0
}

/* this styles the image in the top right corner of the sidebar box */
#box-decor {
    position: fixed;
    left: 1000px;
    bottom: 190px;
    width: 130px;
    rotate: 20deg;
    filter: drop-shadow(2px 2px 2px black);
}

#credits {
    text-align: center;
    padding: 5px;
    font-size: smaller;
    color: var(--alice);
    text-shadow: 0 0 2px black
}
#credits a {
    color: var(--alice)
}

/* TEXT STYLING */
h1, h2, h3, h4 {
    font-family: "Sancreek", serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 3em;
    text-align: center;
    margin: 35px 0 10px 0;
    -webkit-text-stroke: 2px var(--ink);
    /* stripe animation */
    background: repeating-linear-gradient(
        45deg,
        var(--rose),
        var(--rose) 30px,
        var(--light-rose) 30px,
        var(--light-rose) 60px
    );
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    animation: 40s linear 0s infinite move;
}
@keyframes move {
from {
background-position: 0;
}
to {
background-position: 1000px;
}
}

h2, h3, h4 {
    color: var(--light-rose);
    -webkit-text-stroke: thin var(--ink);
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.8);
}

#main a, #box a {
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: var(--light-rose);
    color: var(--alice)
}

#main a:hover, box a:hover {
    color: var(--light-rose);
    text-decoration-color: var(--rose);
    font-style: italic;
    text-shadow: 0 0 2px var(--ink);
}

strong {
    color: var(--alice);
}
em {
    color: var(--alice);
    background-color: var(--dusk);
}

/* MEDIA STYLING */
.float-right {
    float: right;
    margin: 10px;
}
.float-left {
    float: left;
    margin: 10px;
}

.divider {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}












