@import url('https://fonts.googleapis.com/css2?family=Chiron+GoRound+TC:wght@400..600&display=swap');

:root {
    font-family: "Chiron GoRound TC", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #cdd6f4;
}

* {
    padding: 0px;
    margin: 0px;
}

h1 {
    font-size: 2rem;
}

html {
    width: 100vw;
    height: 100vh;
}

body {
    background-color: #1e1e2e;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    background-color: #313244;
    max-width: 30rem;
    max-height: 90%;
    overflow-y: scroll;
}

.fill {
    height: inherit;
    width: inherit;
}

.fill-height {
    height: inherit;
}

.fill-width {
    width: inherit;
}

*:has(> .fill) {
    width: 100%;
    height: 100%;
}

*:has(> .fill-height) {
    height: 100%;
}

*:has(> .fill-width) {
    width: 100%;
}

.column {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.column-end {
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
}

.status-online, .status-away, .status-snooze {
    color: #57cbde;
}

.status-offline {
    color: #898989;
}

.status-playing {
    color: #90ba3c;
}

.text-block {
    padding: 5%;
}

a, a:visited {
    color: #f5c2e7;
    text-decoration: none;
}

a:hover, a:active {
    color: #f2aede;
}

@media (max-aspect-ratio: 3/4) {
    :root {
        font-size: 24px;
    }

    main {
        max-width: 100%;
    }
}
