@font-face {
    font-family: "DTM Sans";
    src: url("/fonts/dtm-sans.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Reddit Mono";
    src: url("/fonts/RedditMono-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: url("images/175637.gif");
    background-repeat: repeat;

    opacity: 1;
    pointer-events: none;
    z-index: -1;
}

body {
    color: #fff;
    font-family: "DTM Sans", monospace;
    font-size: 22px;
    line-height: 1.3;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 30px;
    cursor: url("lyncursorarrow.png"), auto;
}

html {
    font-size: 20px;
}

.scrollwrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    background: rgba(0, 0, 0, 1);
    border-bottom: 1px solid #1e1c1b;
    z-index: 999;
    display: flex;
    align-items: center;
}

.scrollstuff {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: scrolling 15s linear infinite;
    color: #7b7b7b;
    font-size: 24px;
}

@keyframes scrolling {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

a {
    color: #aaa;
    text-decoration: none;
    transition: 0.15s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
    filter: brightness(1.2);
    text-decoration: underline;
    text-underline-offset: 2px;

    cursor: url("images/lyncursorlink.png"), auto;
}

section {
    margin-top: 1.5rem;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.name {
    color: #fff;
    font-size: 26px;
}

.soft {
    color: #777;
    font-size: 18px;
}

.soft2 {
    color: #444;
    margin-top: 0.1rem;
    margin-bottom: 0.8rem;
    font-size: 26px;
}

.soft3 {
    color: #777;
    font-size: 24px;
}

.nameold {
    color: #444;
    margin-top: 0.1rem;
    margin-bottom: 0.8rem;
    font-size: 16px;
}

.label {
    color: #fff;
    font-size: 34px;
}

.archive-link {
    color: #444;
    font-style: italic;
    font-size: 18px;
    padding-bottom: 1px;
    margin-top: 0.2rem;
}

.archive-link:hover {
    color: #6b6b6b;
}

.projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 700px) {
    .projects {
        grid-template-columns: 1fr;
    }
}

/* Media Player Widget */
#musicplayer {
    position: fixed;
    right: 20px;
    top: 20px;
    background: black;
    border: 2px solid rgba(87, 23, 118, 0.84);
    width: fit-content;
    min-width: 300px;
    z-index: 999;
}
.songtitle {
    display: block;
    white-space: nowrap;
    text-align: center;
    padding: 3px;
    border-bottom: 2px solid rgba(87, 23, 118, 0.84); /* border under song title */
}
.songtitle2 {
    padding: 5px; /* padding around song title */
    border-bottom: 2px solid rgba(87, 23, 118, 0.84); /* border under song title */
    display: block;
}
.controls {
    font-size: 20px !important; /* size of controls */
    background-color: black; /* background color of controls */
    text-align: center;
    width: 100%;
}
.controls td {
    padding: 8px 5px 5px;
}

.music-note {
    font-family: "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

/* padding around controls */
.seeking {
    background-color: #000000; /* background color of seeking bar */
    display: flex;
    justify-content: space-evenly;
    padding: 5px; /* padding around seeking bar */
}
.current-time {
    padding-right: 5px;
}
.total-duration {
    padding-left: 5px;
}

i.fas:hover {
    cursor: pointer;
}

i.fas.fa-pause,
i.fas.fa-play,
i.fas.fa-forward,
i.fas.fa-backward {
    color: #ffffff;
}

/* color of controls */
i.fas.fa-pause:hover,
i.fas.fa-play:hover,
i.fas.fa-forward:hover,
i.fas.fa-backward:hover {
    color: #ffffff;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background-color: #000000; /* background color of seeking bar - make the color same as .seeking background color */
}

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;
    background: #ffffff; /* color of seeking track */
}
input[type="range"]::-webkit-slider-thumb {
    height: 10px; /* height of seeking square */
    width: 10px; /* width of seeking square */
    border-radius: 5px; /* change to 5px if you want a circle seeker */
    background: #ffffff; /* color of seeker square */
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -3px;
}

/* settings for firefox browsers */
input[type="range"]::-moz-range-track {
    width: 100%;
    height: 2px; /* thickness of seeking track */
    cursor: help;
    background: #ffffff; /* color of seeking track */
}
input[type="range"]::-moz-range-thumb {
    height: 10px; /* height of seeking square */
    width: 10px; /* width of seeking square */
    border-radius: 5px; /* change to 5px if you want a circle seeker */
    background: #ffffff; /* color of seeker square */
    cursor: help;
    border: none;
}

.yt {
    color: rgba(255, 0, 71, 0.86);
}
.sc {
    color: #e48016;
}
.twt {
    color: #4abcff;
}
.spt {
    color: #03d84f;
}
.apl {
    color: #ff627c;
}
.ig {
    color: #ea4087;
}
.bc {
    color: #629aa9;
}
.ph {
    color: #72a9e0;
}
.tik {
    color: #ff0050;
}
.tok {
    color: #00f2ea;
}
.osu {
    color: #ff7cbb;
}
.sc,
.yt,
.twt,
.spt,
.apl,
.ig,
.bc,
.ph,
.tik,
.tok {
    font-size: 22px;
    text-decoration-skip-ink: auto;
}

.divider {
    border: none;
    border-top: 3px solid rgba(176, 117, 185, 0.48);
    opacity: 0.5;
    margin: 1.3rem;
}
.year {
    margin-top: 0.5rem;
    padding-bottom: 50px;
    color: #fff;
    font-size: 16px;
    opacity: 0.23;
    font-family: monospace;
    text-align: center;
}
.logo-row img {
    height: 50px;
    width: auto;
}
.whitetext {
    filter: brightness(0) invert(1);
}
section {
    transition:
        transform 0.15s ease,
        filter 0.15s ease;
}
section:hover {
    transform: translateY(-1px);
}

.smallthing {
    color: #fff;
    font-size: 20px;
    opacity: 0.5;
}

.box {
    position: relative;
    padding: 12px;
    background: rgba(0, 0, 0, 1);
    background-clip: padding-box;
    border: 25px solid transparent;
    border-image: url("../images/textbox.gif") 15 / 25px repeat;
    border-image-slice: 27.6% fill;
    box-sizing: border-box;
    image-rendering: pixelated;
    color: white;
}

.back {
    color: #ffffff;
    font-style: italic;
    font-family: monospace;
    opacity: 0.2;
}

.names {
    color: #555;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    margin-left: 5;
    font-size: 18px;
}

.kaw {
    width: 150px;
    height: 150px;
    position: relative;
    cursor: pointer;
}

.kaw img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
}

.kaw2 {
    opacity: 0;
}

.hidden {
    opacity: 0;
}

.visible {
    opacity: 1;
}

/* Releases table */
.releasebox {
    margin-top: 20px;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    background: #000;
    border: 3px solid #fff;
    box-sizing: border-box;
    width: fit-content;
    max-width: calc(100vw - 30px);
    overflow-x: auto;
    overflow-y: hidden;
    font-family: "Reddit Mono", monospace;
}

.music-table {
    width: max-content;
    min-width: 0;
    border-collapse: collapse;
}

.music-table {
    width: max-content;
    border-collapse: collapse;
}

.music-table {
    width: max-content;
    min-width: 1100px;
    border-collapse: collapse;
}

.music-table th {
    text-align: left;
    color: #555;
    font-weight: normal;
    padding: 5px;
}

.music-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #151515;
    vertical-align: middle;
    white-space: nowrap;
}

.cover {
    width: 90px;
    height: 90px;
    object-fit: cover;
    display: block;
}

.credits {
    color: #555;

    font-size: 14px;
    margin-top: 4px;
}

.date,
.type,
.runtime {
    color: #666;
    white-space: nowrap;
    font-size: 20px;
}

.rating {
    text-align: center;
    font-family: monospace;
    white-space: nowrap;
}

details summary {
    cursor: pointer;
}

details summary::marker {
    color: #666;
}

.tracklist {
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: 13px;
    color: #777;
    font-size: 13px;
}

.tracklist div {
    margin: 2px 0;
}

.tracklist span {
    color: #444;
    margin-left: 10px;
}

.releasetitle {
    color: #fff;
    font-weight: 800;
}
