body {
    color: rgb(255, 255, 255);
    background-color: rgb(25, 25, 25);
}

.pure-img-responsive {
    max-width: 100%;
    height: auto;
}


/*
Add transition to containers so they can push in and out.
*/

#layout,
#menu,
.menu-link {
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}


/*
This is the parent `<div>` that contains the menu and the content area.
*/

#layout {
    position: relative;
    left: 0;
    padding-left: 0;
}

#layout.active #menu {
    left: 150px;
    width: 150px;
}

#layout.active .menu-link {
    left: 150px;
}


/*
The content `<div>` is where all your content goes.
*/

.content {
    font-family: "Gravity";
    margin: 0 auto;
    padding: 0 2em;
    max-width: 800px;
    margin-bottom: 50px;
    line-height: 1.6em;
}

.header {
    font-family: "Gravity";
    margin: 0;
    color: rgb(255, 237, 237);
    text-align: center;
    padding: 0.1em 2em 0;
    border-bottom: 2px solid rgb(255, 237, 237);
}

.header h1 {
    font-family: "Semi-Coder";
    margin: 0.2em 0;
    font-size: 3em;
    font-weight: 300;
}

.header h2 {
    font-weight: 300;
    color: rgb(255, 218, 218);
    padding: 0;
    margin-top: 0;
}

.content-subhead {
    margin: 50px 0 20px 0;
    font-weight: 300;
    color: rgb(255, 203, 203);
}


/*
The `#menu` `<div>` is the parent `<div>` that contains the `.pure-menu` that
appears on the left side of the page.
*/

#menu {
    margin-left: -150px;
    /* "#menu" width */
    width: 150px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    /* so the menu or its navicon stays above all content */
    background: #0a0a0a;
    overflow-y: auto;
}


/*
    All anchors inside the menu should be styled like this.
    */

#menu a,
#menu span {
    font-family: "Gravity";
    color: #999;
    border: none;
    padding: 0.6em 0 0.6em 0.6em;
}


/*
    Remove all background/borders, since we are applying them to #menu.
    */

#menu .pure-menu,
#menu .pure-menu ul {
    border: none;
    background: transparent;
}


/*
    Add that light border to separate items into groups.
    */

#menu .pure-menu ul,
#menu .pure-menu .menu-item-divided {
    border-top: 1px solid #333;
}


/*
        Change color of the anchor links on hover/focus.
        */

#menu .pure-menu li a:hover,
#menu .pure-menu li a:focus {
    background: #333;
}


/*
    This styles the selected menu item `<li>`.
    */

#menu .pure-menu-selected,
#menu .pure-menu-heading {
    background: #3e0000;
}


/*
        This styles a link within a selected menu item `<li>`.
        */

#menu .pure-menu-selected a {
    color: rgb(78, 78, 78);
}


/*
    This styles the menu heading.
    */

#menu .pure-menu-heading {
    font-size: 110%;
    color: #fff;
    margin: 0;
}


/* -- Dynamic Button For Responsive Menu -------------------------------------*/


/*
The button to open/close the Menu is custom-made and not part of Pure. Here's
how it works:
*/


/*
`.menu-link` represents the responsive menu toggle that shows/hides on
small screens.
*/

.menu-link {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    background: #000;
    background: rgba(0, 0, 0, 0.7);
    font-size: 10px;
    z-index: 10;
    width: 2em;
    height: auto;
    padding: 30px;
    color: #fff;
}

.menu-link:hover,
.menu-link:focus {
    background: #000;
}

.menu-link span {
    position: relative;
    display: block;
    margin-left: -9px;
}

.menu-link span,
.menu-link span:before,
.menu-link span:after {
    background-color: #fff;
    pointer-events: none;
    width: 18px;
    height: 1px;
}

.menu-link span:before,
.menu-link span:after {
    position: absolute;
    margin-top: -0.6em;
    content: " ";
}

.menu-link span:after {
    margin-top: 0.6em;
}


/* -- Responsive Styles (Media Queries) ------------------------------------- */


/*
Hides the menu at `48em`, but modify this based on your app's needs.
*/

@media (min-width: 48em) {
    .header,
    .content {
        padding-left: 0.2em;
        padding-right: 0.2em;
    }
    #layout {
        padding-left: 150px;
        /* left col width "#menu" */
        left: 0;
    }
    #menu {
        left: 150px;
    }
    .menu-link {
        position: fixed;
        left: 150px;
        display: none;
    }
    #layout.active .menu-link {
        left: 150px;
    }
}

@media (max-width: 48em) {
    /* Only apply this when the window is small. Otherwise, the following
    case results in extra padding on the left:
        * Make the window small.
        * Tap the menu to trigger the active state.
        * Make the window large again.
    */
    #layout.active {
        position: relative;
        left: 150px;
    }
}

#donate_button {
    font-weight: bold;
}

.content-subhead {
    font-weight: bolder;
    text-align: center;
}

.shim-title {
    font-weight: bold;
    color: #cecece;
    font-size: 1.2em;
}

.shim-details {
    padding: 17px;
}

a {
    color: #77f;
}

a:visited {
    color: #a3b;
}

a:hover {
    color: #f00f04;
    cursor: pointer;
}

.demo-card {
    width: 150px;
    border: 2px solid darkred;
    border-radius: 5px;
    padding: 6px;
    display: inline-block;
    margin: 4px;
}

.demo-image {
    width: 128px;
    height: 128px;
    display: inline-block;
}

.demo-title {
    text-align: center;
    font-weight: bolder;
    display: block;
    margin-top: 4px;
}

.demo-author {
    text-align: center;
    display: block;
    font-size: 0.8em;
}

.demo-button {
    width: 100%;
    margin-top: 7px;
    display: block;
    background-color: rgb(133, 14, 14);
    color: #fff;
    /* for the rate button */
    font-size: 13px;
}

.demo-button {
    width: 100%;
    margin-top: 7px;
    display: block;
    background-color: rgb(113, 4, 4);
    color: #fff;
    /* for the rate button */
    font-size: 13px;
}

.demo-button a {
    color: #fff;
    text-decoration: none;
}


/* finding this method to center them things took me a lot lmao. i centered anything i could till it worked 😭😭😭 */


/* .content {
    display: block;
    align-content: center;
    align-items: center;
    text-align: center;
} */

.menu-sub-item {
    background: #151515;
}

.donor-name {
    font-weight: bold;
    color: #ff0;
    font-size: 20px;
}

.donor-name:visited {
    color: #f70;
}

nevermind {
    text-decoration-line: line-through;
    display: none;
}

.note {
    color: rgb(185, 255, 185);
    font-size: 13px;
    /* font-weight: bold; */
    /* this isnt working i changed da font lol */
}

pre {
    margin: 0;
}

.payment-method {
    font-weight: bold;
    color: rgb(255, 226, 173);
    font-size: 16px;
}

@font-face {
    font-family: "Gravity";
    src: url("/res/fonts/Gravity-Regular.woff2");
}

@font-face {
    font-family: "Semi-Coder";
    src: url("/res/fonts/Semi-Coder-Regular.woff2");
}

@font-face {
    font-family: "Objective";
    src: url("/res/fonts/Objective.woff2");
}

.content strong {
    color: #faa;
}

input {
    width: 100%;
}

textarea {
    width: 100%;
}

.comment-author {
    font-weight: bold;
    color: #263;
    font-size: 18px;
}

.comment-content {
    font-size: 18px;
}

.comment-time {
    font-size: 14px;
    color: #999;
}

.result * {
    display: inline;
    flex-direction: row;
}

.place {
    font-weight: bold;
    font-size: 17px;
}

.result .result-author {
    font-weight: bold;
    color: #f70;
    font-size: 13px;
}

.result .demo-button a {
    color: #fff;
    text-decoration: none;
}

.result .demo-button {
    margin-right: 6px;
}

.demo-card a {
    text-decoration: none;
}

.result a {
    text-decoration: none;
}

.pure-menu-link:hover {
    background: #111 !important;
}

.small-title {
    font-size: 0.8em;
    font-weight: bold;
    color: #999;
    background: #222;
}

pre {
    display: inline;
}