* {
    box-sizing: border-box;
    image-rendering: pixelated;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ae5b04 black;
    transition: 0.4s;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #ae5b04;
    --orange-transparent: #ae5b0488;
    --teal: #008080;
}

body {
    background: black;
    color: white;
    font-family: arial;
}

a img:hover {
    transform: scale(1.2);
}

.border_teal {
    border-image-slice: 4;
    border-image-width: 12px;
    border-image-outset: 8px;
    border-image-repeat: stretch;
    border-image-source: url("/assets/border_teal.png");
    border-style: solid;
    padding: 8px 16px;
}

.border_orange {
    border-image-slice: 4;
    border-image-width: 12px;
    border-image-outset: 8px;
    border-image-repeat: stretch;
    border-image-source: url("/assets/border_orange.png");
    border-style: solid;
    padding: 8px 16px;
}

.container {
    display: grid;
    grid-template-columns: 160px 200px 160px 200px 160px;
    grid-template-rows: 120px 120px 1fr 8px;
    grid-auto-columns: 1fr;
    gap: 36px 28px;
    grid-auto-flow: row;
    grid-template-areas:
        "logo logo logo logo logo"
        "fire-one links-left icon links-right fire-two"
        "side-left main main main side-right"
        "footer footer footer footer footer";
    margin: auto;
    margin-bottom: 48px;
    width: 1000px;
}

.logo {
    grid-area: logo;
    background: url(assets/logo.png);
    background-size: 280px;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: -28px;
}

.fire-one {
    grid-area: fire-one;
    background: url(assets/fire.gif);
    background-size: 120px;
    background-repeat: no-repeat;
    background-position: center;
}

.fire-two {
    grid-area: fire-two;
    background: url(assets/fire.gif);
    background-size: 120px;
    background-repeat: no-repeat;
    background-position: center;
}

.icon {
    grid-area: icon;
    background: url(assets/icon.png);
    background-size: 320px;
    background-repeat: no-repeat;
    background-position: left;
    transition: 0s;
}

.icon:hover {
    background: url(assets/icon.png);
    background-size: 320px;
    background-repeat: no-repeat;
    background-position: right;
    transition: 0s;
}

.links-left {
    grid-area: links-left;
    text-align: center;
}
.links-left a {
    font-size: 24px;
    color: white;
    margin: 12px;
    line-height: 50px;
}

.links-left a:hover {
    color: var(--orange);
    font-size: 28px;
}

.links-right {
    grid-area: links-right;
}

.side-left {
    grid-area: side-left;
}

.side-left hr {
    border-bottom: 4px solid var(--orange);
    margin: 4px 0;
}

.my-sites {
    width: 88px;
    margin: 12px auto;
}

.artfight {
    width: 80px;
    margin: 12px auto;
}

.tamanotchi {
    background: var(--orange-transparent);
    border: 4px solid var(--orange);
    padding: 8px 28px;
}

#statuscafe {
    background: var(--orange-transparent);
    padding: 4px;
    margin: 8px 0;
    border: 4px solid #ae5b04;
}
#statuscafe-username {
    color: white;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 4px;
    padding-bottom: 4px;
    border-bottom: 4px solid var(--orange);
}

#statuscafe-username a {
    color: white;
    font-family: "Press Start 2P", system-ui;
    font-size: 10px;
    text-decoration: none;
}
#statuscafe-content {
    font-size: 16px;
    margin: 4px;
}

.side-right {
    grid-area: side-right;
    text-align: center;
}

.side-right a {
    text-transform: uppercase;
    text-decoration: none;
    color: white;
}

.side-right a:hover {
    color: var(--teal);
    font-weight: bold;
}

.side-right small {
    font-size: 12px;
}

.side-right hr {
    border-bottom: 4px solid var(--orange);
    margin: 4px 0;
}

.side-right h2 {
    border-color: var(--orange);
}

.main {
    grid-area: main;
    width: 100%;
}

.main a {
    color: white;
    text-decoration: none;
    border-bottom: 2px dashed var(--teal);
}

.main a:hover {
    filter: brightness(1.2);
    letter-spacing: 1px;
}

.main img {
    display: block;
    max-width: 100%;
    margin: 16px auto;
}

hr {
    border: 2px solid var(--teal);
    margin: 12px 0;
}

blockquote {
    border-left: 8px solid var(--orange);
    background: var(--orange-transparent);
    padding: 12px;
    margin: 4px 0;
}

textarea {
    background: var(--orange-transparent);
    color:white;
    border: 0px;
    padding: 0 8px;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
}

.spoiler {
    background: var(--orange);
    color: var(--orange);
    padding: 1px 4px;
}

.spoiler:hover {
    color: white;
}

.graphics-hoard {
    text-align: center;
}

.graphics-hoard img {
    display: inline;
    margin: 4px;
}

.graphics-hoard img:hover {
    transform: scale(150%);
}

.graphics-hoard a {
    border-bottom: 0;
}

.footer {
    grid-area: footer;
    text-align-last: center;
    font-family: silkscreen;
}

p {
    font-size: 18px;
    margin-top: 12px;
}

b {
    color: white;
    font-family: silkscreen;
    margin-left: 8px;
}

h1 {
    font-family: "Press Start 2P", system-ui;
    font-size: 32px;
    line-height: 34px;
    text-align: center;
}

h2 {
    font-family: "Press Start 2P", system-ui;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    border-bottom: 4px solid var(--teal);
    margin-top: 8px;
}

h3 {
    font-family: "Press Start 2P", system-ui;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    border-bottom: 4px solid var(--orange);
}

h3 a {
    color: white;
    font-family: "Press Start 2P", system-ui;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-decoration: none;
}

ol {
    margin-left: 28px;
    list-style: upper-roman;
}

ol li {
    text-align: left;
    margin-bottom: 8px;
}

ol li::marker {
    font-family: silkscreen;
}

ul {
    margin-left: 18px;
}

ul li {
    list-style: square url(/assets/bullet.png);
    text-align: left;
    line-height: 28px;
}

.accent {
    display: none;
}

/*RESPONSIVENESS*/
@media only screen and (max-width: 1020px) {
    .container {
        display: grid;
        grid-template-columns: 160px 200px 160px 200px 160px;
        grid-template-rows: 120px 120px 1fr 1fr 8px;
        grid-auto-columns: 1fr;
        gap: 36px 28px;
        grid-auto-flow: row;
        grid-template-areas:
            "logo logo logo logo logo"
            ". links-left icon links-right ."
            ". main main main ."
            "side-left side-left . side-right side-right"
            "footer footer footer footer footer";
        margin: auto;
        margin-bottom: 48px;
        width: 1000px;
    }

    .side-left,
    .side-right {
        width: 160px;
        margin: auto;
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 920px) {
    .container {
        display: grid;
        grid-template-columns: 160px 200px 160px;
        grid-template-rows: 120px 120px 1fr 1fr 8px;
        grid-auto-columns: 1fr;
        gap: 36px 28px;
        grid-auto-flow: row;
        grid-template-areas:
            "logo logo logo"
            "links-left icon links-right"
            "main main main"
            "side-left . side-right"
            "footer footer footer";
        margin-left: 24px;
        margin-bottom: 48px;
        width: 1000px;
    }
}

@media only screen and (max-width: 650px) {
    .container {
        display: grid;
        grid-template-columns: 160px 200px 160px;
        grid-template-rows: 120px 120px 1fr 1fr 8px;
        grid-auto-columns: 1fr;
        gap: 36px 28px;
        grid-auto-flow: row;
        grid-template-areas:
            "logo logo logo"
            "links-left icon links-right"
            "main main main"
            "side-left . side-right"
            "footer footer footer";
        margin-left: 24px;
        margin-bottom: 48px;
        width: 1000px;
    }

    .links-left a {
        font-size: 18px;
        color: white;
        margin: 12px;
        line-height: 50px;
    }

    .links-left a:hover {
        color: var(--orange);
        font-size: 20px;
    }
}

@media only screen and (max-width: 620px) {
    .container {
        display: grid;
        grid-template-columns: 160px 160px;
        grid-template-rows: 120px 120px 1fr 1fr 8px;
        grid-auto-columns: 1fr;
        gap: 36px 28px;
        grid-auto-flow: row;
        grid-template-areas:
            "logo logo"
            "links-left links-right"
            "main main"
            "side-left side-right"
            "footer footer";
        margin-left: 24px;
        margin-bottom: 48px;
        width: 1000px;
    }
}
