:root {
    --bg: #ffffff;
    --fg: #000000;
    --accent: #ff906b;
}
body {
    margin: 0;
    background-color: var(--bg);
    font-family: "Sofia Pro", sans-serif;
}
main {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#window {
    background-color: #272724;
    width: calc(100% - 100px);
    max-width: 640px;
    height: 360px;
    border-radius: 8px;
    margin-bottom: 64px;
    overflow: hidden;
    color: var(--fg);
}
section {
    color: #fff;
}
#dock {
    width: calc(100% - 250px);
    max-width: 640px;
    min-width: 320px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 32px;
}
#dock > .icon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#dock > .icon:hover > svg {
    fill: var(--accent);
    cursor: pointer;
    transition-duration: 0.1s;
}
#dock > .icon > svg {
    scale: 150%;
    transition-duration: 0.1s;
}
#tooltip {
    font-weight: 300;
    font-size: 16px;
    color: var(--fg);
    opacity: 50%;
}
@keyframes vibrate {
    0% {transform: translate(-0.3px, -8.5px) scale(1.05)}
    5% {transform: translate(1.5px, -10.1px) scale(1.05)}
    10% {transform: translate(0.5px, -11.5px) scale(1.05)}
    15% {transform: translate(0.1px, -10.3px) scale(1.05)}
    20% {transform: translate(-0.6px, -8.4px) scale(1.05)}
    25% {transform: translate(0.4px, -11.9px) scale(1.05)}
    30% {transform: translate(-0.5px, -9.8px) scale(1.05)}
    35% {transform: translate(-2.0px, -11.3px) scale(1.05)}
    40% {transform: translate(1.6px, -12.0px) scale(1.05)}
    45% {transform: translate(-1.7px, -10.6px) scale(1.05)}
    50% {transform: translate(-1.9px, -10.0px) scale(1.05)}
    55% {transform: translate(1.4px, -10.4px) scale(1.05)}
    60% {transform: translate(-1.4px, -9.8px) scale(1.05)}
    65% {transform: translate(-0.6px, -10.7px) scale(1.05)}
    70% {transform: translate(0.4px, -9.8px) scale(1.05)}
    75% {transform: translate(-1.7px, -8.7px) scale(1.05)}
    80% {transform: translate(-0.3px, -9.4px) scale(1.05)}
    85% {transform: translate(-0.2px, -10.2px) scale(1.05)}
    90% {transform: translate(1.7px, -8.4px) scale(1.05)}
    95% {transform: translate(-0.3px, -8.7px) scale(1.05)}
}
.homelogo {
    transform: scale(1.05) translateY(-10px);
    fill: #fff;
}
.homelogo:hover {
    animation-name: vibrate;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}
#sect-home > h1 {
    margin-bottom: 0;
    padding: 0px 48px;
    text-align: center;
    margin-top: 50px;
}
#sect-home > span {
    display: flex;
    justify-content: center;
    padding: 0px 48px;
    width: calc(100%-96px);
    margin: 0;
    color: var(--accent);
}
h1 {
    font-weight: 600;
    font-size: 30px;
}
p {
    font-weight: 300;
}
.separator {
    opacity: 50%;
    padding: 0px 24px;
}
.hidden {
    display: none !important;
}
#sect-music, #sect-socials {
    overflow: hidden;
}
#sect-music {
    padding: 16px;
    display: flex;
    flex-direction: row;
    height: calc(100% - 32px);
}
#music-left, #music-right {
    width: calc(50% - 1px);
}
#music-left {
    overflow-y: scroll;
    overflow-x: hidden;
}
.vd {
    height: 100%;
    width: 2px;
    background-color: #373734;
}
.href {
    width: calc(100% - 16px);
    background-color: #fff;
    border-radius: 4px;
    height: 96px;
    color: #000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: serif;
}
.song {
    padding: 16px 12px 0px;
    width: calc(100% - 40px);
    border-radius: 8px;
    height: 32px;
    margin: 4px 0;
    transition-duration: 0.1s;
}
.song:hover {
    background-color: #373734;
    transition-duration: 0.1s;
    cursor: pointer;
}
.song > p {
    margin: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#music-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: scroll;
    padding: 8px;
}
#music-right > img {
    max-width: 160px;
    width: 100%;
    border-radius: 4px;
}
#music-right > h1 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    hyphens: manual;
}
#music-right > h2 {
    margin: 0;
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    height: 32px;
}
.streaming {
    width: 24px;
    height: 24px;
    padding: 4px;
    border-radius: 4px;
    transition-duration: 0.1s;
    background-color: #0004;
    margin-top: 16px;
}
.applemusic:hover {
    background-color: #f054;
    transition-duration: 0.1s;
    cursor: pointer;
}
.streaming-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
#sect-design, #sect-chat {
    height: 100%;
}
#design-cont {
    display: flex;
    flex-direction: row;
    padding: 16px;
    height: 100%;
    overflow-x: scroll;
    gap: 16px;
}
#design-cont > a > img {
    height: calc(100% - 32px);
    border-radius: 4px;
    background-color: #373734;
    transition-duration: 0.1s;
}
#design-cont > a:hover > img {
    filter: opacity(50%);
    transition-duration: 0.1s;
}
#sect-socials {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
}
#socials-left, #socials-right, #sect-chat {
    padding: 16px;
}
#socials-left {
    width: 30%;
    min-width: 150px;
}
#socials-right {
    width: 100%;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
}
#socials-right > img, #socials-right > a > img {
    width: 88px;
    height: 31px;
    image-rendering: pixelated;
    transition-duration: 0.1s;
}
#socials-right > img:hover, #socials-right > a > img:hover {
    opacity: 50%;
    transition-duration: 0.1s;
}
#socials-left > a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 24px;
    transition-duration: 0.1s;
    line-height: 24px;
    display:block;
}
#socials-left > a:hover {
    transition-duration: 0.1s;
    color: #ff906b;
    margin-left: 8px;
}
#sect-chat {
    display: flex;
    flex-direction: column;
    height: calc(100% - 32px);
    justify-content: space-between;
}
#msgs {
    display: flex;
    flex-direction: column-reverse;
    overflow-y: scroll;
    height: calc(100% - 32px);
    border-radius: 4px;
}
.msg-out, .msg-in {
    padding: 12px 13px 11px 12px;
    line-height: 18px;
    margin-bottom: 8px;
    width:fit-content;
    min-width: 16px;
    max-width: 50%;
    border-radius: 4px;
    font-weight: 300;
}
.msg-out > a {
    color: #fff;
    transition-duration: 0.1s;
}
.msg-out > a:hover {
    color: #ff906b;
    transition-duration: 0.1s;
}
.msg-in {
    background-color: #ff906b;
    margin-left: auto;
}
.msg-out {
    background-color: #373734;
}
#chat-input {
    background: none;
    border: 2px solid #373734;
    border-radius: 4px;
    height: 20px;
    color: #fff;
    font-family: "Sofia Pro", sans-serif;
    font-size: 16px;
    font-weight: 300;
    padding: 6px 8px;
    transition-duration: 0.1s;
}
#chat-input:focus, #chat-input:hover {
    background-color: #373734;
    outline: none;
    transition-duration: 0.1s;
}