/* ricing, split this to its own file when done, or not, idk, depends */

.sidebar-name {
    float: left;
    height: 60px;
    position: absolute;
    z-index: 5;
    rotate: -90deg;
    font-size: 4rem;
    right: 200px;
    bottom: 340px;
    text-decoration: none;
    color: white;
    /* z-index: 69420; */
}

.rin-stand img {
    float: left;
    position: relative;
    right: 70px;
    bottom: 320px;
    width: auto;
    height: 320px;
    z-index: 420;
}

.sidebar-deco-offset:nth-child(1) a {
    margin-left: 30px;
}

.sidebar-deco-offset:nth-child(2) a {
    margin-left: 45px;
}

.sidebar-deco-offset:nth-child(3) a {
    margin-left: 35px;
}

.sidebar-deco-offset:nth-child(4) a {
    margin-left: 30px;
}

.sidebar-deco-offset:nth-child(5) a {
    margin-left: 25px;
}

#discord-status {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.avatar {
    margin-bottom: -3px;
}


/* marquee thingamajig on the sidebar*/
.marquee-buttons {
    width: 290px;
    position: absolute;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* phone gooners */
@media only screen and (max-width: 1280px),
(orientation: portrait) {
    .sidebar-name {
        display: none;
    }

    .rin-stand img {
        display: none;
    }

    .sidebar-deco-offset a {
        margin-left: 0px;
    }

    .sidebar-deco-offset:nth-child(1) a {
        margin-left: 0px;
    }

    .sidebar-deco-offset:nth-child(2) a {
        margin-left: 0px;
    }

    .sidebar-deco-offset:nth-child(3) a {
        margin-left: 0px;
    }

    .sidebar-deco-offset:nth-child(4) a {
        margin-left: 0px;
    }

    .sidebar-deco-offset:nth-child(5) a {
        margin-left: 0px;
    }
}


@media only screen and (max-width: 768px),
(orientation: portrait) {
    .marquee-buttons {
        display: none;
    }
}

/* less important, not layout */
/* static animation, from dimden.dev */
body:before {
    content: "";
    position: fixed;
    opacity: 0.2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    background-image: url(/static/imgs/overlays/overlay.png);
    background-repeat: all;
    background-position: 0px 0px;
    box-shadow: inset 0px 0px 10em rgb(0 0 0 / 40%);
}

body:after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    background-image: url(/static/imgs/overlays/overlay.png);
    background-repeat: all;
    background-position: 0px 0px;
}