:root {
    --border: 2px solid var(--colortwo);
    --mainfontcolor: #000000;
    --colorone: #fbc6e2;
    --colortwo: #c6dffb;
    --colorthree: #f678bb;
    --colorfour: #5b5df5;
    --scrollbarcolor: var(--colortwo);
    --linkscolor: var(--colorthree);
    --linkscolorhover: var(--colorone);
    --font: "Arial";
    --controliconscolor: var(--colorfour);
    --boxbgcolor: #f1f8ff;
    --innerbgcolor: #ffffff;
}

* {
    box-sizing: border-box;
    scrollbar-color: var(--scrollbarcolor) var(--bgcolor);
    scrollbar-width: thin;
}

::selection {
    background: var(--scrollbarcolor);
    color: white;
}

a {
    text-decoration: none;
    color: var(--linkscolor);
    transition: 0.3s;
}

a:hover {
    cursor: help;
    color: var(--linkscolorhover);
}

body {
    background-color: var(--bgcolor);
    background-image: url();
    background-repeat: repeat;
    background-position: 0 0;
    background-attachment: fixed;
    color: var(--mainfontcolor);
    font-family: var(--font);
    font-size: 1rem;
    margin: 0;
}

header {
    font-size: 1.5rem;
    text-align: center;
    color: var(--colorthree);
}

#wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    width: 1000px;
    margin: auto;
    gap: 10px;
    padding: 10px 0;
}

.containerwrap {
    display: flex;
    gap: 10px;
}

.left,
.right {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.middle {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.right {
    position: sticky;
    top: 10px;
    height: fit-content;
}

.box {
    border: var(--border);
    padding: 10px;
    background-color: var(--boxbgcolor);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#musicplayer,
.controls,
.seeking {
    display: flex;
    gap: 10px;
    align-items: center;
}

#musicplayer {
    border-bottom: var(--border);
    padding: 10px;
    background-color: var(--boxbgcolor);
}

.material-symbols-outlined {
    display: flex !important;
    font-size: 1.5rem !important;
    user-select: none;
    font-variation-settings: "FILL" 1;
    color: var(--controliconscolor);
    transition: 0.3s;
    cursor: help;
}

.playpause-track {
    border-radius: 50%;
    background-color: var(--colortwo);
    padding: 5px;
}

.seeking {
    width: 100%;
}

.track-name,
.track-artist {
    width: max-content;
}

input[type="range"] {
    width: 100%;
}

.playing-wrap {
    width: fit-content;
    display: flex;
    gap: 10px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background-color: var(--colorthree);
    margin: 0;
    height: 2px;
    cursor: help;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    box-shadow: 0 0 0 #000000;
    background: var(--colorfour);
    border-radius: 1px;
    border: 0 solid #000000;
}

input[type="range"]::-webkit-slider-thumb {
    box-shadow: 0 0 0 #000000;
    border: 0 solid var(--colorfour);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: inherit;
    -webkit-appearance: none;
    margin-top: -3px;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
    background: inherit;
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: 2px;
    box-shadow: 0 0 0 #000000;
    background: inherit;
    border-radius: 0;
    border: 0 solid #000000;
}

input[type="range"]::-moz-range-thumb {
    box-shadow: 0 0 0 #000000;
    border: 0 solid var(--colorfour);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: inherit;
}

.playlist-box {
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 250px;
    max-height: 250px;
    overflow-y: auto;
    background: var(--boxbgcolor);
    border: var(--border);
    z-index: 100;
    padding: 10px;
}

.playlist-box.open {
    display: block;
}

.playlist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 13px;
    cursor: default;
}

.playlist-item:hover {
    background: var(--color-four);
}

.playlist-item .pl-info {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 10px;
}

.playlist-item .pl-play {
    cursor: help;
    flex-shrink: 0;
}

.playlist-item.active .pl-info {
    font-weight: bold;
}

.inner {
    display: flex;
    flex-direction: column;
}

.flexbox {
    gap: 10px;
}

.footer {
    width: 100%;
}

.links table,
.links tr,
.links td {
    border: var(--border);
}

.links td {
    padding: 10px;
}

.links table {
    text-align: center;
    width: 100%;
    border-collapse: collapse;
    border-top-width: 20px;
    border-bottom-width: 20px;
    background-color: var(--innerbgcolor);
}

.graphic {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: center;
    border: var(--border);
    padding: 10px;
    background-color: var(--innerbgcolor);
}

.middlewrap,
.buttons {
    display: flex;
    gap: 10px;
}

.buttons {
    justify-content: space-between;
}

.middlewrap img {
    display: block;
}

.middlewrap {
    display: flex;
    gap: 10px;
}

.middlewrap {
    position: relative;
    display: flex;
    gap: 10px;
}

.imgwrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 185px;
    flex-shrink: 0;
}

.toptext {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 195px;
    right: 0;
    overflow-y: auto;
}

.icon,
.squareimg {
    aspect-ratio: 1 / 1;
}

.buttons img {
    width: 88px;
    height: 31px;
}

.stamps img {
    width: 100px;
    height: 60px;
}

.tallimg {
    height: 379px;
}

.pinktext {
    color: var(--colorthree);
}

.bluetext {
    color: var(--colorfour);
}

.divider {
    height: 50px;
    width: 100%;
}

.someguy {
    margin: auto;
}

.someguy img {
    height: 150px;
    width: 150px;
    display: block;
}

.guestbook {
    border: var(--border);
    height: 100%;
    padding: 10px;
    background-color: var(--boxbgcolor);
}

iframe {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 600px) {
    #wrapper {
        width: 100%;
    }

    .container {
        flex-direction: column;
        width: 100%;
    }

    .middle,
    .right,
    .left {
        width: 100%;
    }

    .middle {
        order: 1;
    }

    .right {
        order: 2;
    }

    .left {
        order: 3;
    }

    .mobileimg {
        width: 100%;
    }
}
