* {
    box-sizing: inherit;
}
a {
    color: black;
}
p {
    font-size: medium;
}
@font-face {
    font-family: 'Yu Gothic UI';
    src: url('/fonts/YuGothicUI-Semilight.woff2');
    font-weight: normal;
}
@font-face {
    font-family: 'Yu Gothic UI';
    src: url('/fonts/YuGothicUI-Semibold.woff2');
    font-weight: bold;
}
@font-face {
    font-family: 'MingLiU-ExtB';
    src: url('/fonts/MingLiU-ExtB.woff2');
    font-weight: normal;
}
@keyframes blink {
    50% {
        opacity: 0.0;
    }
}
@keyframes blur {
    0% {filter: blur(0);}
    50% {filter: blur(.05rem);}
    100% {filter: blur(0);}
}
.location::after {
    content: "right";
}
.active::after {
    animation: blink 1s step-start 0s infinite;
    font-style: italic;
    content: " <-- Here!";
}
.alert::after {
    animation: blink 5s ease 2s infinite;
    font-style: italic;
}
#sitemap_wrapper {
    background: white;
    padding: 1rem;
}
.sitemap {
    list-style: none;
    margin-bottom: 1rem;
}
.inactive {
    text-wrap: wrap;
}
.active {
    text-wrap: nowrap;
}
html {
    font-size: 1vw;
    box-sizing: content-box;
}
body {
    background-color: black;
    color: white;
    font-family: "Yu Gothic UI";
    margin: 0rem;
    width: 100vw;
    height: 100vh;
}
#wrapper {
    display: grid;
    min-height: 100%;
    max-width: 100%;
    grid-template-rows: auto 1fr auto;
}
header #top_header {
    /*height: 7rem;*/
    margin: 2rem 2rem 0rem;
    font-family: "MingLiU-ExtB";
    background-color: white;
    color: black;
    display: flex;
    flex-wrap: nowrap;
    padding: 2rem 4rem;
    align-items: center;
    max-width: 100%;
    gap: 2rem;
}
.left {
    flex-direction: column;
}
.right {
    flex: 1 1 0;
}
.center {
    flex: 1;
}

header #top_header .left {
    display: flex;
    flex-wrap: wrap;
}
header #top_header .center {
    background-image: url("/imgs/small_rose.png");
    background-repeat: space no-repeat;
}
header #top_header .center img {
    width: auto;
}
#clock {
    max-width: 10%;
    flex: 1 1 0;
    display: flex;
    justify-content: center;
}
#clock_video {
    max-width: 10%;
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 2rem;
    z-index: 1;
    padding: 2rem;
}
#canvas {
    width: 80%;
    height: 80%;
}
#canvas2 {
    width: 100%;
    height: 100%;
}
header #top_header .right {
    justify-content: space-between;
    display: flex;
    min-width: 30%
}
header #top_header .nav {
    font-size: 3rem;
}
header #top_header #title {
    font-size: 4rem;
    font-weight: bold;
    width: fit-content;
}
header #top_header #playing_now_container {
    max-width: 100%;
    text-wrap: wrap;
}

main #main {
    margin: 1rem 2rem 2rem;
    background-color: black;
    color: black;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
#primary {
    flex: 1;
    width: 50%;
}
#primary img {
    width: 100%;
}
.vert_flexbox {
    flex-direction: column;
}
#banner_flexbox {
    display: flex;

    width: 100%;
}
#banner_flexbox .horiz_flexbox {
    gap: 1rem;
}
.manifesto #primary {
    width: auto;
    text-align: center;
}
#secondary {
    flex: 1;
    background-color: white;
    max-width: 20%;
    padding: 2rem 4rem 4rem 4rem;
    height: fit-content;
}
.featured_image {
    margin-top: .5rem;
    border-width: .5rem;
    border-color: black;
    border-style: solid;
    margin-bottom: 1rem;
}
#secondary img {
    width: 100%;
}
.horiz_flexbox {
    display: flex;
    flex-direction: row;
}
main #sidebar {
    min-width: 20%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    max-height: 100%;
}
#sitemap {
    display: flex;
    flex-direction: column;
    background: black;
    color: white;
    padding: 1rem;
}
#sitemap h2 {
    font-style: normal;
    margin-bottom: 1rem;
}
#sitemap a {
    color: white;
}
#sitemap .bold {
    font-style: italic;
}
main h1 {
    font-style: italic;
    margin: 0rem;
}
main h2 {
    margin: 0rem;
    font-style: italic;
}
main ol {
    list-style-type: lower-greek;
    padding: 0rem 0rem 0rem 1rem;
}
main ul {
    margin: 0rem;
}
.bold {
    font-weight: bolder;
}
footer #footer {
    font-family: MingLiU-ExtB;
    background: black;
    color: white;
    height: auto;
    margin: 2rem;
    padding: 2rem 4rem;
}
.no_box {
    margin: 0rem;
    padding: 0rem;
}
.top_margin {
    margin-top: 1rem;
}
.bottom_margin {
    margin-bottom: 1rem;
}
.underlined {
    text-decoration-line: underline;
}
.quote {
    color: white;
    font-family: MingLiU-ExtB;
    background: black;
    font-style: italic;
    padding: .5rem 1rem .5rem 1rem;
    margin-left: 4rem;
    margin-right: 0rem;
    width: calc(100% - 2rem);
    text-align: left;
}
.quote a, .quote_alt a {
    color: white;
}
.quote_alt {
    color: white;
    font-family: MingLiU-ExtB;
    background: black;
    font-style: italic;
    padding: .5rem 1rem .5rem 1rem;
    margin-left: -4rem;
    width: calc(100% - 2rem);
    text-align: right;
}
.right-align {
    text-align: right;
}
.left-align {
    text-align: left;
}
.italic {
    font-style: italic;
}
.normal {
    font-style: normal;
}
.white {
    color: white;
}
.black {
    color: black;
}
#tri_image {
    justify-content: space-evenly;
}
#tri_image img {
    height: 10rem;
    width: auto;
}
#song_caption {
    font-size: small;
    font-style: italic;
}
#mobile_video {
    display: none;
}
#banana_footer {
    display: flex;
    background-color: white;
    color: black;
    height: 10rem;
    font-size: 2rem;
    justify-content: space-between;
    align-content: center;
}
#banana_footer div {
    align-content: center;
}
#banana_footer .desc {
    margin-left: 4rem;
}
#banana_footer .loc {
    background-color: black;
    color: white;
    height: 3rem;
    align-self: center;
    padding: .5rem 4rem .5rem 1rem;
}
#comments_wrapper {
    margin-top: 1rem;
}
#comments_box {
    background-color: white;
    color:black;
    padding: 2rem 4rem;
}
#comments_box input {
    padding: 0;
    width: 100%;
}
#all_comments {
    max-width: 70%;
}
#soul_monitor {
    text-align: center;
    position: absolute;
    max-width: 100%;
    padding: 2rem;
    justify-content: center;
    display: grid;
    animation: blink 5s ease-in-out 0s infinite;
    z-index: 2;
}
#soul_monitor h2 {
    display: block;
}
.bound {
    color: green;
    animation: blink 8s ease-in-out .5s infinite, blur 2s ease .2s infinite;
}
.unbound {
    color: red;
    animation: blink 3s ease-in-out .2s infinite, blur 2s ease .2s infinite;
}
.video {
    display: flex;
    justify-content: center;
    width: 100%;
}
.video video {
    position: relative;
    z-index: 0;
}
@media screen and (width < 50rem) {
    html {
        font-size: 1vw;
    }
    .horiz_flexbox {
        flex-direction: column;
    }
    header #top_header {
        text-underline-offset: .5rem;
    }
    h1, header #top_header #title, h1 a {
        font-size: 5rem;
    }
    header #top_header .center {
        background-image: none;
        display: flex;
        justify-content: center;
    }
    header #top_header .center img {
        max-width: 100%;
        height: auto;
    }
    h2, header #top_header .nav a {
        font-size: 4rem;
    }
    p,a,li {
        font-size: 3rem;
    }
    .active::after {
        content: " <-- "
    }
    header #top_header #playing_now_container p,
    header #top_header #playing_now_container a {
        font-size: 2rem;
    }
    #tri_image {
        justify-content: center;
    }
    #tri_image img {
        width: 50%;
        height: auto;
    }
    main #main {
        display: grid;
        grid-template-columns: 70% 30%;
        height: auto;
    }
    main #primary {
        grid-row-start: 1;
        grid-column-start: 1;
        width: auto;
    }
    main #secondary {
        grid-row-start: 2;
        grid-column-start: 1;
        max-width: 100%;
        max-height: 100%;
        height: 100%
    }
    main #sidebar {
        grid-row-start: 1;
        grid-column-start: 2;
        width: auto;
        margin-right: 1rem;
    }
    .location::after {
        content: "below";
    }
    #clock {
        display: none;
    }
    #desktop_video {
        display: none;
    }
    #mobile_video {
        display: block;
    }
}

@media screen and (width = 720px) {
    html {
        font-size: 1vw;
    }
    #primary {
        align-content: center;
    }
    #mobile_video {
        display: none;
    }
    #desktop_video {
        display: flex;
    }
    video {
        width: 100%;
    }
    .horiz_flexbox {
        flex-direction: column;
    }
    header #top_header {
        text-underline-offset: .5rem;
    }
    h1, header #top_header #title, h1 a {
        font-size: 3rem;
    }
    header #top_header .center {
        display: none;
    }
    h2, header #top_header .nav {
        display: none;
    }
    p,a,li {
        font-size: 3rem;
    }
    header #top_header #playing_now_container p,
    header #top_header #playing_now_container a {
        font-size: 2rem;
    }
    main #main {
        display: grid;
        grid-template-columns: 70% 30%;
        height: auto;
        gap: 3rem;
    }
    main #primary {
        grid-row-start: 1;
        grid-column-start: 1;
        width: auto;
    }
    main #secondary {
        grid-row-start: 2;
        grid-column-start: 1;
        max-width: 100%;
        max-height: 100%;
        height: 100%
    }
    main #sidebar {
        display: none;
    }
    #clock {
        width: 100%;
        height: 100%;
        display: block;
        align-self: center;
    }
    canvas {
        width: 150px;
        height:150px;
    }
    #banner_flexbox {
        width: 100vw;
    }
    #banana_footer {
        display: none;
    }
    #all_comments {
        font-size: 2rem;
    }
}
