:root {
    --container: 700px
}
::-webkit-scrollbar {
    width:6px;
}
::-webkit-scrollbar:hover {
    outline:1px solid white;
}
::-webkit-scrollbar-track {
    border-left:1px solid black;
    background-image: linear-gradient(to bottom, #218cca, #a8a853, #ff6600);
}
::-webkit-scrollbar-thumb {
    background-color: #93beba;
    border-left:1px solid black;
}

* {
    box-sizing: border-box;
}
body {
    background-image: url(../assets/index/bg.png);
    background-size: 100%;
    height:7000px;
}
#container {
    display: grid;
    grid-template:
        "header header"
        "nav nav"
        "aside main"
        "aside section"
        "footer footer"
    ;
    border: 1px solid #424242;
    padding: 5px;
    grid-template-columns: 200px auto;
    border-radius: 3px;
    grid-template-rows: 150px;
    background-color: #b7c4c3;
    outline: 5px solid #e6e6e6;;
    
}

aside {
    position: relative;
    margin-right: 5px;
}

.box {
    border: 1px solid #616161;
    box-shadow: inset 0px 0px 1px #b4b4b4;
    background-color: #f5f5f5;
    border-radius: 3px;
    position: relative;
    outline: 1.5px solid white;
}


.box:active {
    outline: none;
}

header {
    background-color: #f0f3f4 !important;
    border-radius: 20px 20px 3px 3px !important;
    position: relative;
    margin-bottom: 5px;
    background-image: url(../assets/home/header.png);
    background-size:60%;
    background-position: 290px -125px;
    background-repeat: no-repeat;
    font-family: mochiy;
}
header h1 {
    position: absolute;
    right:450px;
    text-align: center;
    line-height: 15px;
    top:40px;
    rotate: -4deg;
    color:#4c495d;
    text-shadow: 2px 2px #d1dee1;
}
header h1 small {
    font-size:12px;
    color:#66b6ab
}

.hi {
    position: absolute;
    bottom: 0px;
    width: 100%;
    box-shadow: inset 0px 0px 1px #b4b4b4;
    overflow: hidden;
    white-space: nowrap;
    background-color: #97c857;
    color:#f0f3f4;
    text-shadow: 0px 3px #739743;
    border-top:3px solid #529697;
    font-weight: bold;
    font-family:serif
}

nav {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 5px;
    font-family: arial;
    margin-bottom:5px;
}

nav a {
    flex-grow: 1;
    text-decoration: none;
    color:#25253f;
    transition:0.2s letter-spacing
}
nav a:hover {
    color:#6752b2;
    letter-spacing: 2px;
    transition:0.2s letter-spacing
}
nav a:after {
    content:" ::.";
    color:#8697a1;
    text-shadow: none;
}
nav a:before, main p:before {
    content:".:: ";
    text-shadow: none;
    color:#8697a1
}

main .button {
    position: absolute;
    bottom: 5px;
    right: 5px;
}


main.box {
    padding: 5px;
    font-size: 17px;
    color:#351d6d;
    background-image: url(../assets/home/bg.png);
}

main h3 {
    font-family: roadpix;
    font-size:16px;
    background-image: linear-gradient(to right, #5073a1 60%, #76b9b0);
    color:#eef7f3;
    text-shadow:1px 1px #447492 ;
    margin-bottom:10px;
    padding-top:7px;
}
.rei {
    background-color: #f19a53;
    color:#70307a;
    font-weight: bold;
    padding:0px 5px;
    border-radius:3px;
    text-shadow: none;
}
a {
    text-shadow: 1px 1px #ffffff, 1px 0px white, -1px 0px white, 0px 1px white, -1px -1px white, 0px -1px white, 2px 2px #766f8c;
    font-weight: bold;
}
main div > img{
    float: left;
    height: 250px;
    width: 150px;
    margin-right: 5px;
}

#updates,
#gallery {
    margin-top: 5px;
}

#gallery {
    display: flex;
    padding: 5px;
    gap: 5px
}

#gallery div {
    width: 50%
}

#gallery .art {
    height: 300px;
}

#gallery .box {
    margin-top: 40px;
    background-color: #ecc673;
    width:100%;
    padding:5px;
    box-shadow:0px 0px 4px white inset ;
}
#gallery .box h4 {
    font-size:16px;
    font-family: roadpix;
    color:white;
    background-image: linear-gradient(to right, #5073a1 60%, #76b9b0);
}
.art {
    background-image: url(https://roboticoperatingbuddy.neocities.org//bgs/dibujo.png);
    background-size:190%;
    background-position:right center;
    transform: scaleX(-1);
}
#fanlistings {
    height: 60px;
    padding: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    gap: 5px
}

#fanlistings::-webkit-scrollbar {
    height: 0px
}

#updates {
    height: 200px;
    border: 1px solid red;
    overflow-y: auto;
}

#statuscafe {
    text-align: center;
    width: 100%;
}

#statuscafe-username {
    font-size: 0;
}

#statuscafe img {
    width: 50px;
    height: 50px;
}

#statuscafe-content {
    border: 1px solid;
    border-radius: 5px;
    padding: 2px;
    height: 40px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

footer {
    margin-top: 5px;
    padding:5px;
    text-align: center;
}

audio {
    width: 100%;
    height: 15px;
}
.dog {
    position:fixed;
    bottom:0px;
    width:100%;
    pointer-events: none;
}