/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */
:root {
    --website-size: 900px;
    --border-radius: 5px;
    --padding: 12px;
    --gap: 10px;
    --focus-color: #f64e00;
    --marquee-duration: 20s;

    --header-img: url(https://placehold.co/1920x1080);
    --header-align: center;
    --header-height: 300px;

    --title-font: "Geo";
    --title-color: white;

    --header-font: "Acidic";
    --header-color: black;

    --bold: #4d1414;
    --italics: #64291e;
    --blockquote: #44444e;
    --accent: #4d1414;
    --font-on-accent: #fff;

    --background: #715a5a ;
    --background-deco: #37353E;
    --body-font: "Nunito";
    --font-color: #1f1c1c;

    --links: #672c0d;
    --links-hover: #000000;

    --borders: #361a1a;
    --body-bg: #f7efdf;

    --nav-bg: #64341e;
    --nav-bg-hover: #c89772;
    --nav-borders: #3a0b0b;
    --nav-text: white;
    --nav-text-hover: black;

    --footer-bg: #280f0f;
    --footer-text: white;
    --footer-link: orange;

    @media (prefers-color-scheme: dark) {
        --header-img: url(https://placehold.co/1920x1080);
        --header-align: top;
        --title-color: #330909;

        --header-color: #d3dad9;

        --bold: #e0a020;
        --italics: #f4da9e;
        --blockquote: #44444e;
        --accent: #e8cc68;
        --font-on-accent: #fff;

        --background: #37353e;
        --background-deco: #44444e;
        --font-color: #eddfdf;

        --links: #f69827;
        --links-hover: #ffffff;

        --borders: #d3dad9;
        --body-bg: #23211b;

        --nav-bg: #ce9073;
        --nav-bg-hover: #522c0f;
        --nav-borders: #b74b21;
        --nav-text: #000000;
        --nav-text-hover: #ffffff;

        --footer-bg: #dfab6c;
        --footer-text: #000000;
        --footer-link: #361e0e;
    }
}

@font-face {
    font-family: "Nunito";
    font-display: swap;
    src: url(../fonts/Nunito-VariableFont_wght.ttf);
}

@font-face {
    font-family: "Geo";
    font-display: swap;
    src: url(../fonts/Geo-Regular.ttf);
}

@font-face {
  font-family: "Acidic";
  font-display: swap;
  src: url("Acidic.ttf") format('ttf'),
      
}

/* -------------------------------------------------------- */
/* SCROLLBAR STYLING */
/* -------------------------------------------------s------- */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--borders) transparent;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 10px;
    border: 3px double var(--borders);
}

::selection {
    color: #fff;
    background: var(--borders);
}

/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */

body {
    font-family: var(--body-font);
    background-color: var(--background);
    background-image: linear-gradient(var(--background-deco) 1px, transparent 1px),
        linear-gradient(to right, var(--background-deco) 1px, var(--background) 1px);
    background-size: 20px 20px;
    background-attachment: fixed;
    color: var(--font-color);
    font-size: 1em;
}

* {
    box-sizing: border-box;
    margin: 0;

    &:focus-visible {
        outline-color: var(--focus-color) !important;
        outline-offset: -1px !important;
        outline-style: dotted !important;
        outline-width: 2px !important;
        border-color: transparent;
    }
}

html {
    position: relative;
}

html,
body {
    padding: 0;
    margin: 0;
}

a {
    color: var(--links);
    text-decoration: underline;
    transition: 0.25s;
    line-height: 1rem;

    &:hover {
        color: var(--links-hover);
        text-decoration: none;
    }
}

/* only add external links to paragraphs, blockquotes, and lists */
main p a[href^="http"]:after,
main blockquote a[href^="http"]:after,
main li a[href^="http"]:after {
    display: inline-block;
    content: "↗";
    margin-left: 1px;
}

/* -------------------------------------------------------- */
/* HEADER + NAVIGATION */
/* -------------------------------------------------------- */
header {
    border-bottom: 3px dotted var(--borders);
}

#headerdeco {
    display: flex;
    align-items: flex-end;
    justify-content: end;
    background-image: var(--header-img);
    height: var(--header-height);
    background-repeat: no-repeat;
    background-position: var(--header-align);
    background-size: cover;
    width: 100%;
    border-radius: var(--border-radius);
    border: 3px solid var(--borders);
    box-shadow: 2px 2px 0 var(--borders);
}

#headerdeco p {
    font-size: 3em;
    font-family: var(--title-font);
    color: var(--title-color);
    padding: 5px 10px;
    font-weight: bold;
    text-shadow:
        4px 4px var(--accent),
        -1px -1px var(--accent),
        1px 1px var(--accent),
        -1px 1px var(--accent),
        1px -1px var(--accent);
}

#headerdeco p a {
    color: inherit;
    text-decoration: none;
}

#headerdeco p a:hover {
    letter-spacing: 2px;
}

header summary {
    display: none;
}

nav {
    display: flex;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    justify-content: space-between;
    width: 100%;
    align-content: center;
    gap: 10px;
    padding: var(--padding) 0;
}

nav a {
    text-align: center;
    color: var(--nav-text);
    background-color: var(--nav-bg);
    flex: 1 0 21%;
    width: auto;
    border-radius: var(--border-radius);
    border: 3px solid var(--nav-borders);
    padding: 5px 0;
    text-decoration: none;
    box-shadow: 2px 2px 0 var(--nav-borders);

    &:hover {
        background-color: var(--nav-bg-hover);
        color: var(--nav-text-hover);
    }
}

/* -------------------------------------------------------- */
/* MAIN CONTENT */
/* -------------------------------------------------------- */
.container {
    max-width: var(--website-size);
    margin: 10px auto;
    background-color: var(--blockquote);
}

main {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    gap: var(--gap);
    padding: var(--padding) 0;
}

main p {
    line-height: 1.4em;
    padding-bottom: 5px;
    padding: 5px 0;
}

main p:first-child {
    padding-top: 0;
}

main p:last-child {
    padding-bottom: 0;
}

main .box {
    position: relative;
    background-color: var(--body-bg);
    border: 3px solid var(--borders);
    outline: 1px dotted var(--borders);
    outline-offset: -5px;
    padding: var(--padding);
    border-radius: var(--border-radius);
    box-shadow: 2px 2px 0 var(--borders);
    max-width: var(--website-size);
}

/* only for boxes within boxes */
main div .box {
    margin-bottom: 10px;

    &:last-child {
        margin-bottom: 0;
    }
}

/* -------------------------------------------------------- */
/* STYLING */
/* -------------------------------------------------------- */
h1 {
    font:
        1.8em var(--header-font),
        sans-serif;
    border-bottom: 2px dotted var(--accent);
    color: var(--header-color);
}

h2 {
    font:
        1.6em font-family: "Acidic",
        sans-serif;
    border-bottom: 2px dotted var(--accent);
    margin: 5px 0 5px 0;
    color: var(--header-color);
}

h3 {
    font:
        1.4em var(--header-font),
        sans-serif;
    color: var(--header-color);
}

h4 {
    font:
        1.3em var(--header-font),
        sans-serif;
    color: var(--header-color);
}

h5 {
    font:
        1.2em var(--header-font),
        sans-serif;
    color: var(--header-color);
}

h6 {
    font:
        1.1em var(--header-font),
        sans-serif;
    color: var(--header-color);
}

hr {
    border: none;
    border-top: 2px dotted var(--accent);
    overflow: hidden;
}

bold,
strong,
b {
    color: var(--bold);
}

em,
italics,
i {
    color: var(--italics);
}

abbr {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: var(--accent) !important;
    cursor: pointer;
}

underline,
u {
    text-decoration: underline;
    text-decoration-style: double;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--accent);
}

s,
del {
    text-decoration: line-through;
    opacity: 0.8;
}

mark {
    /* Text highlighted by using the <mark> element */
    text-shadow: 1px 1px 4px var(--blockquote);
    background-color: inherit;
    color: inherit;
}

main .image,
main .full-width-image,
main .two-columns {
    margin: 0.75em 0;
}

blockquote {
    background: var(--blockquote);
    padding: 10px;
    margin: 1em 0.5em;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    border-left: 3px solid var(--borders);
}

main summary {
    background-color: var(--blockquote);
    padding: 10px;
    border-radius: var(--border-radius);
    transition: 0.2s;
}

main summary:hover {
    cursor: pointer;
    background-color: var(--accent);
    color: var(--font-on-accent);
}

main pre {
    margin: 1em 0 1.5em;
}

main code {
    text-transform: none;
    background-color: var(--blockquote);
    padding: 4px;
    border-radius: var(--border-radius);
}

main center {
    margin: 1em 0;
    padding: 0 1em;
}

/* Scrolling Areas */

.scrollable {
    height: 200px;
    background-color: var(--blockquote);
    border-radius: var(--border-radius);
    padding: var(--padding);
    overflow: scroll;
}

.scrollable ul {
    margin: 0;
}

/* Image Styling */

img {
    max-width: 100%;
}

.image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

.full-width-image {
    display: block;
    width: 100% !important;
    height: auto;
}

.images {
    display: flex;
    width: calc(100% + 5px + 5px);
    margin-left: -5px;
    margin-right: -5px;
}

.images img {
    width: 100%;
    height: auto;
    padding: 5px;
    margin: 0;
    overflow: hidden;
}

.image-deco {
    background-color: var(--blockquote);
    border: 3px solid var(--borders);
    outline: 1px dotted var(--borders);
    outline-offset: -5px;
    border-radius: var(--border-radius);
}

/* Form elements */
main input,
textarea,
select,
option {
    color: var(--text);
    background: var(--blockquote);
    font: 1rem var(--body-font);
    border: 1px solid var(--borders);
    padding: 5px;
}

main button {
    color: var(--nav-text);
    background: var(--nav-bg);
    font: 1rem var(--body-font);
    border: 3px solid var(--borders);
    border-radius: var(--border-radius);
    padding: 5px 10px;
    transition: 0.2s;
    margin: 0 5px;
}

main button:hover {
    background: var(--nav-bg-hover);
}

/* Lists */
main ul,
main ol {
    padding-left: 20px;
    margin: 5px 0 5px 10px;
    overflow: hidden;
}

main li {
    margin: 7px 0 7px 0;
    line-height: 1.5;
    /*list-style-image: url(../img/deco/star_bullet.gif);*/
    /*this is just if you want to use an image instead*/
}

main li:last-child {
    margin-bottom: 0;
}

main li:first-child {
    margin-top: 0;
}

main li::marker {
    color: var(--accent);
}

/* -------------------------------------------------------- */
/* GALLERY */
/* -------------------------------------------------------- */
/* Wrapper */
.image-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
}

/* Items */
.image-gallery div {
    width: calc(20% - 10px);
    box-sizing: border-box;
    border: 3px solid var(--borders);
    outline: 1px dotted var(--borders);
    outline-offset: -5px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Images */
.image-gallery div img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-in-out;
}

.image-gallery div img:hover {
    transform: scale(1.1);
}

/* -------------------------------------------------------- */
/* CONTENT SIZE HELPERS VIA KALECHIPS */
/* -------------------------------------------------------- */
.full {
    flex: 1 1 calc(100% - 2rem); /* for some reason it fixes the weird gap issues */
}
.half {
    flex: 1 1 calc(50% - 2rem);
}
.third {
    flex: 1 1 calc(33.33% - 2rem);
}
.twothird {
    flex: 1 1 calc(66.66% - 2rem);
}
.quarter {
    flex: 1 1 calc(25% - 2rem);
}
.threequarter {
    flex: 1 1 calc(75% - 2rem);
}

/* ONLY FOR ITEMS THAT AREN'T FITTING */
.fillheight {
    height: 100%;
}

/* -------------------------------------------------------- */
/* RIGHT TO LEFT MARQUEE */
/* -------------------------------------------------------- */
.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee div {
    padding-left: 100%;
    width: max-content;
    animation: marquee var(--marquee-duration) linear infinite;
    line-height: 1em;
}

.marquee div:hover {
    animation-play-state: paused;
}

.marquee p {
    display: inline;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee div {
        overflow: scroll;
        padding-left: 0;
        width: auto;
        animation: none;
    }
}

/* -------------------------------------------------------- */
/* OTHER HELPER CLASSES */
/* -------------------------------------------------------- */
/* COLUMNS: */
.two-columns {
    display: flex;
}

.two-columns > * {
    flex: 1 1 0;
    margin: 0;
}

.two-columns > *:first-child {
    padding-right: 0.75em;
}

.two-columns > *:last-child {
    padding-left: 0.75em;
}

.hide-desktop {
    display: none;
}

/* center any item */
.center-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
}

/* Shadow CSS Deco */
.image-shadow {
    filter: drop-shadow(3px 3px 0 var(--accent));
}

.float-img-right {
    max-width: 40%;
    float: right;
    margin: 2px 0 2px 10px;
}

.float-img-left {
    max-width: 40%;
    float: left;
    margin: 2px 10px 2px 0;
}

/* fix for floats! */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    text-align: center;
    padding: var(--padding);
    border-radius: var(--border-radius);
    border: 3px solid var(--borders);
    font-size: 0.8em;
    box-shadow: 2px 2px 0 var(--borders);
}

footer a {
    color: var(--footer-link);
}

/* -------------------------------------------------------- */
/* SCROLL TO TOP */
/* -------------------------------------------------------- */
#backscroll {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 13px; /* Place the button at the bottom of the page */
    right: 10px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: 3px solid var(--nav-borders); /* Remove borders */
    background-color: var(--nav-bg); /* Set a background color */
    color: var(--nav-text); /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 10px 15px; /* Some padding */
    border-radius: var(--border-radius); /* Rounded corners */
    font-size: 1.1rem; /* Increase font size */
    font-family: "Nunito";
    transition: 0.5s;
}

#backscroll:hover {
    color: var(--nav-text-hover);
    background-color: var(--nav-bg-hover); /* Add a dark-grey background on hover */
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY, DO NOT REMOVE */
/* -------------------------------------------------------- */
#skip a {
    position: absolute;
    display: inline-block;
    left: 0;
    top: -1000px;
    overflow: hidden;
    transition: top 0.5s ease;
    background: var(--background);
    color: var(--link);
    z-index: 1000;
    padding: 5px;
}

#skip a:focus {
    top: 0;
    transition: top 0.5s ease;
}

/* -------------------------------------------------------- */
/* CALENDAR FROM BECHNO KID, JS ISN'T INCLUDED */
/* -------------------------------------------------------- */
#widget-calendar table {
    border: 1px solid var(--borders);
    border-collapse: collapse;
    font-size: 0.9em;
    margin: 0 auto;
}

#widget-calendar td {
    padding: 0 0.25rem;
    border: 1px solid var(--borders);
}

#widget-calendar .month {
    font-weight: bold;
    text-align: center;
    font-size: 1em;
}

#widget-calendar .days {
    font-weight: bold;
}

#widget-calendar .today {
    font-weight: bold;
    color: var(--accent);
    text-decoration: underline;
    text-decoration-style: dotted;
}

#widget-calendar .blank {
    background-color: var(--blockquote);
}

/* -------------------------------------------------------- */
/* MOBILE RESPONSIVENESS */
/* -------------------------------------------------------- */
@media screen and (max-width: 800px) {
    .container {
        margin: 10px;
    }

    main .box {
        max-width: 100%;
    }

    main {
        display: block;
    }

    header summary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 60px;
        background-color: var(--nav-bg);
        border-radius: var(--border-radius);
        border: 3px solid var(--nav-borders);
        color: var(--nav-text);
        margin: 10px 0;
        font-weight: bold;
        box-shadow: 2px 2px 0 var(--nav-borders);
    }

    header summary::after {
        content: " ▾";
        margin-left: 10px;
    }
    header details[open] summary:after {
        content: " ▴";
    }

    nav {
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 0;
    }

    nav a {
        display: block;
        flex: 1 0 49%;
        margin: 0;
    }

    /* Items */
    .image-gallery div {
        width: calc(33% - 10px);
    }

    .hide-desktop {
        display: block !important;
    }

    .hide-mobile {
        display: none;
    }

    .full,
    .half,
    .third,
    .twothird,
    .quarter,
    .threequarter {
        margin: 10px 0 10px 0;
    }

    .full:last-child,
    .half:last-child,
    .third:last-child,
    .twothird:last-child,
    .quarter:last-child,
    .threequarter:last-child {
        margin-bottom: 0;
    }

    .full:first-child,
    .half:first-child,
    .third:first-child,
    .twothird:first-child,
    .quarter:first-child,
    .threequarter:last-child {
        margin-top: 0;
    }

    .float-img-right {
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 75%;
    }

    .float-img-left {
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 75%;
    }
}

.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%; /* Optional: set a width smaller than the container */
}

/* Document
 * ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
    line-height: 1.15; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
 * ========================================================================== */

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
    margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */

ol ol,
ol ul,
ul ol,
ul ul {
    margin: 0;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Correct the inheritance of border color in Firefox.
 * 3. Show the overflow in Edge 18- and IE.
 */

hr {
    box-sizing: content-box; /* 1 */
    color: inherit; /* 2 */
    height: 0; /* 1 */
    overflow: visible; /* 3 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
    background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */

abbr[title] {
    text-decoration: underline;
    text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
    font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
    display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Remove the border on images within links in IE 10-.
 */

img {
    border-style: none;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
    overflow: hidden;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

table {
    border-color: inherit; /* 1 */
    text-indent: 0; /* 2 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

button,
input,
select {
    margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */

button {
    overflow: visible; /* 1 */
    text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * Show the overflow in Edge 18- and IE.
 */

input {
    overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

progress {
    display: inline-block; /* 1 */
    vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
    text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 */

textarea {
    margin: 0; /* 1 */
    overflow: auto; /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:-moz-ui-invalid {
    box-shadow: none;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge 18- and IE.
 */

details {
    display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */

dialog {
    background-color: white;
    border: solid;
    color: black;
    display: block;
    height: -moz-fit-content;
    height: -webkit-fit-content;
    height: fit-content;
    left: 0;
    margin: auto;
    padding: 1em;
    position: absolute;
    right: 0;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
}

dialog:not([open]) {
    display: none;
}

/*
 * Add the correct display in all browsers.
 */

summary {
    display: list-item;
}

/* Scripting
 * ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
    display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
    display: none;
}

/* User interaction
 * ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
    display: none;
}


.player {
        width:fit-content;
        border: #CECECE solid 2px;
        border-radius: 100px;
        margin-left:auto;
        margin-right:auto;
      background: linear-gradient(0deg, rgba(205,205,205,1) 0%, rgba(230,230,230,1) 30%, rgba(255,255,255,1) 100%); 
      padding:5px;
    }
 



.seek_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 6px;
  background: #e4d5dc;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border-radius: 8px;
}

.seek_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 8px;
  height: 8px;
  background: white;
  cursor: pointer;
  border-radius: 50%;
  border:1px solid #cecece;
  padding-top:3px;
  position:relative;
  bottom:3px;
}
 
button,input,label,option,select,table,textarea,ul.tree-view{-webkit-font-smoothing:none;font-family:"Myriad Pro";font-size:11px}h1{font-size:5rem}h2{font-size:2.5rem}h3{font-size:2rem}h4{font-size:1.5rem}u{border-bottom:.5px solid #222;text-decoration:none}button,input[type=reset],input[type=submit]{border:none;border-radius:0;box-sizing:border-box;color:transparent;min-height:23px;min-width:75px;padding:0 12px;text-shadow:0 0 #222}.vertical-bar,button,input[type=reset],input[type=submit].vertical-bar{height:20px;width:4px}button:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{opacity:0.5}}@media (not(hover)){button:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{box-shadow:inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #dfdfdf,inset 2px 2px grey}}button:focus,input[type=reset]:focus,input[type=submit]:focus{opacity:1}button::-moz-focus-inner,input[type=reset]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0}:disabled,:disabled+label,input[readonly],input[readonly]+label{color:grey}:disabled+label,button:disabled,input[type=reset]:disabled,input[type=submit]:disabled{text-shadow:1px 1px 0 #fff}}
 

 
 
@media (not(hover)){
	button:not(:disabled):hover {
    box-shadow:inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #dfdfdf,inset 2px 2px grey}
}

 
@font-face {
  font-family: "Myriad Pro";
  src: url("https://dl.dropbox.com/scl/fi/z8hqw29h8a9i3a3cbbxkt/MYRIADPRO-REGULAR.OTF?rlkey=begwqxljs2gzyw26h00oeovzi&st=px0mbeax&dl=0") format("woff");
}
 
 
 
.window, .title-bar {
  font-family: "Myriad Pro";
  -webkit-font-smoothing: none;
  font-size: 11px;
}
 
.window {
  padding:10px;
  width:290px;
}
 
 
.window-body { 
  display:block;
  margin:auto; 
  border-radius:0em;
}
 
 
 
input[type=range] {
        -webkit-appearance: none;
        appearance:none;
        width: 100%;
    }
 
    input[type=range]:focus {
        outline: none;
    }
 
    /* settings for chrome browsers */
    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 2px; /* thickness of seeking track */
        cursor: pointer;
    }
 
 
    /* settings for firefox browsers */
    input[type=range]::-moz-range-track {
        width: 100%;
        height: 2px; /* thickness of seeking track */
        cursor: pointer;
    }
 
    .flex {display: flex;}
 
   
 
 
    
 
    #musicplayer {
display:block;
        float:right;
      background: linear-gradient(0deg, #F1E3F0, white) padding-box, linear-gradient(to top, white, #A2A2A2) border-box;
  border-radius: 60em;
  border: 2px solid transparent;
      margin-left:8px;
      padding-left:10px;
      box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
-webkit-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
-moz-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
    }

 
    .wheel {
      display: block;
  justify-content: center;
        margin:auto;
      background: linear-gradient(white, white) padding-box, linear-gradient(to top, white, #A2A2A2) border-box;
  border-radius: 50em;
  border: 2px solid transparent;
      padding-top:0px;
      box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
-webkit-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
-moz-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
    }

.innerwheel {
  border-radius: 50em;
  border: 2px solid #E2E2E2;
  
      padding:9px;
  padding-left:10px;
  padding-right:12px;
  margin:0;
  box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.17) inset;
-webkit-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.17) inset;
-moz-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.17) inset;
  
}
th{
  width:20px;
 
  margin:0;
}
.fas fa-minus{
  margins:0;
  padding-bottom:5px;
}

 
    .wheelcontrols {
        font-size:14px !important; /* size of controls */
        text-align:center;
        padding-top:2px;
color: #aaa;
    opacity: 0.8;
    }

.wheelcontrols button {
    background: none;
    border: none;
    color: #aaa;
    opacity: 0.6;
    font-size: 14px;
    padding: 2px;
    cursor: pointer;
}
.wheelcontrols button:hover {
  opacity: 1;
}

.controls button:hover {
   opacity: 1;
  
}

.playpause-track button{
  display:block;
  color:#C1C1C1;
  font-size: 20px;
  margin:auto;
}

.playpause-track {
    font-size: 22px !important;
    padding: 3px;
}
 
    .songtitle {
        padding:25px; /* padding around song title */
        color:#A3A3A3;
      padding-bottom:0;
      margin-left:15px;
      margin-right:20px;
        font-size: 16px;
        display:block;
        font-family:Myriad Pro;
    }
 
    .controls button{
      display:block;
      
      margin-left:15px;
        font-size:14px !important; /* size of controls */
        text-align:center;
        color:#ccb3be;
      opacity:0.6
        
    } 
 
    button {
      min-width:20px;
      background:none;
      
      text-align:center;
    }
button:active {
    opacity: 0.7;
}

 
    .seeking {
        display:flex;
        justify-content: space-evenly;
        padding:10px; /* padding around seeking bar */
      padding-left:0;
      padding-bottom:0px;
      color:#A3A3A3;
    }
 
    .current-time {
        padding-right:5px;
    }
 
    .total-duration {
        padding-left:5px;
    }
    