/*!****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/bars.css ***!
  \****************************************************************/
/* matching the presentation from u/Ok-Team-6073's youtube video
--------------------------*/

@media print {
    radial-progress-bar {
        top: 0px;
    }
    .label {
        translate: -50% -80%;
    }
}

.radial-bar {
    --color__bg: transparent;
    --color__progress: white;
    --radial__label: 0.25em;
    background-color: var(--color__bg);
    display: inline-grid !important;
    place-items: center;
    height: 1em;
    width: 1em;
    margin-left: 1px !important;
    margin-right: 1px !important;
}

radial-progress-bar {
    top: -1px;
    height: 50%;
    box-sizing: border-box;
}

.track {
    stroke: transparent;
}

.progress {
    stroke: var(--color__progress);
}

.label {
    color: black;
}


/* functional styles 
-------------------------*/

@layer defaults {
    radial-progress-bar {
        display: block;
        position: relative;
        /* filter: drop-shadow(0px 0px 1px black); */
        --progress: 0;
        --thickness: 32;
    }
    .image {
        height: 100%;
        width: 100%;
        aspect-ratio: 1 / 1;
    }
    .ring {
        /* create our circle dimensions */
        cx: 50;
        cy: 50;
        r: calc(51 - (var(--thickness) / 2));
        /* don't have a filled-in circle, but make a circle with a border instead */
        fill: transparent;
        stroke-width: var(--thickness);
        /* make it so that the progress starts from the top */
        transform-origin: center;
        rotate: -90deg;
    }
    .ring.track {
        /* the track the progress moves along should be grey by default*/
        stroke: grey;
    }
    .ring.progress {
        /* the progress bar itself should be red by default*/
        stroke: red;
        /* the dasharray should match the pathLength for this to work and use percentages*/
        stroke-dasharray: 100;
        /* power the progress using this stroke dashes */
        stroke-dashoffset: calc(100 - var(--progress));
        /* any changes should be transitioned! */
        transition: stroke-dashoffset 1s linear;
    }
    .label {
        /* style the little counter in the middle */
        font-family: sans-serif;
        font-size: var(--radial__label);
        /* stick it in the middle out-of-flow */
        position: absolute;
        top: 100%;
        left: 50%;
        translate: -50% -99%;
        z-index: 5;
    }
    /* 		.label::before {
			content: "L"
		}	 */
    .ring_ct::before {
        position: absolute;
        width: 100%;
        height: 200%;
        content: " ";
        /* 		background-image:url(https://i.ytimg.com/vi/z6ulGYJtLpQ/sddefault.jpg); */
        /* 		background-image:url(https://www.sumi-e.it/wp-content/gallery/amsterdham/P1030584_modif2_ridim-1.jpg); */
        background-image: url(https://www.teamlab.art/images/pc-m/11163);
        background-size: cover;
        background-position: 50% 50%;
        /* 		background-size: 130% 130%;
		background-position: 65% 45%; */
        clip-path: circle(50%);
        transform: rotate(-90deg);
        translate: 0% -25%;
        z-index: -2;
    }
    .ring_ct {
        clip-path: circle(50%);
        translate: 0% -25%;
    }
    .ring_ct::after {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 200%;
        content: " ";
        background-color: #fff;
        clip-path: circle(20%);
        translate: 0% -25%;
        z-index: 2;
    }
}


/* tangent */

.svg1-link {
    font-family: sans-serif;
    position: absolute;
    bottom: 1em;
    right: 1em;
}
/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/color.css ***!
  \*****************************************************************/
:root {
    --mn-L-text-color: #0f0f0f;
    --mn-D-text-color: #f0f0f0;
    --mn-L3-text-color: #0c0c0c;
    --mn-D3-text-color: #c0c0c0;
    --mn-red-color: red;
    --aijiro: rgba(235, 246, 247, 1);
    --aijiro-alph: rgba(235, 246, 247, 0.15);
    --mashiro: rgb(255, 255, 255);
    --zoge-iro: rgb(255, 255, 240);
    --hakushi: rgb(249, 251, 255);
    --hakushi-alph: rgb(249, 251, 255, 0.5);
    --mizu-iro: rgb(134, 171, 165);
    --gunjo-iro: rgb(93, 140, 174);
    --sora-iro: rgb(77, 143, 172);
    --chigusa-iro: rgb(49, 117, 137);
    --benimidori: rgb(120, 119, 155);
    --kurobeni: rgb(35, 25, 30);
    --rurikon: rgb(27, 41, 75);
    --rurikon-alph: rgba(27, 41, 75, 0.15);
    --konjo-iro: rgb(0, 49, 113);
    --ao: rgb(0, 0, 255);
    --omeshi-onando: rgb(61, 76, 81);
    --tetsuonando: rgb(43, 55, 54);
    --sakuranezumi: rgb(172, 129, 118);
    --ginshu: rgb(188, 45, 41);
    --azuki-iro: rgb(103, 36, 34);
    --enji-iro: rgb(157, 41, 51);
    --akabeni: rgb(195, 39, 43);
    --shinshu: rgb(143, 29, 33);
    --karakurenai: rgb(201, 33, 55);
    --kokushoku: rgb(23, 20, 18);
    --kokushoku-alph: rgba(23, 20, 18, 0.2);
    /* not accurate */
    --aijiro-haiiro: #A0A3A4;
    --haiiro: rgba(91, 90, 92, 0.5);
    --sukaitsuri-iro: rgb(220, 240, 250);
    /* default */
    --nandemonai: rgba(0, 0, 0, 0);
    --shiro: var(--hakushi);
    --kuro: rgb(0, 0, 0);
    --shiro-kotoba: var(--aijiro);
    --kuro-kotoba: var(--kurobeni);
}

.alert {
    color: var(--karakurenai);
}
/*!**************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/cv.css ***!
  \**************************************************************/
/*  hardcoding for 8.5x11in page size */

:root {
    --aspect-ratio: 0.7727272727272727;
    --accent-color: #02228B;
}

.z-2-back {
    z-index: -2;
    position: absolute;
}

.cv {
    /* width: 21cm;
    height: 29.7cm; */
    width: 100%;
    aspect-ratio: var(--aspect-ratio);
    /* margin: 27mm 16mm 27mm 16mm; */
    /* background-color: violet; */
}

.cv h1.huge {
    font-size: 3em;
}

.cv hr {
    margin-top: 15px;
    margin-bottom: 15px;
}

.skill hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.interests ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    line-height: 1.1;
}

#rxp .cv_right>ul {
    margin-left: 15px !important;
    margin-bottom: 5px !important;
}

div.cv_right div#item {
    margin-left: 10px;
}

div.items {
    outline: 0.5px solid var(--haiiro);
    color: var(--accent-color);
    font-family: var(--code);
    font-size: 0.8em;
    /* clip-path: polygon( 0 10%, 10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,10 10,0 90,0 100,10 100,90 90,100 10,100 0,90 0,10 5,10 5,87 13,95 87,95 95,87 95,13 87,5 13,5 5,13 0,10' class='bevel' /%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-origin: padding-box;
    background-clip: border-box; */
    padding: 2px;
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
}

#pub,
#rxp {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
    margin-bottom: 5px;
    /* avoid column and page breaks */
    page-break-inside: avoid;
    break-inside: avoid;
}

#pub {
    line-height: 1.1;
}

#rxp {
    line-height: 1.2;
}

.rtl-section {
    direction: rtl;
}

.rtl-section>* {
    direction: ltr;
}

#date {
    right: 0px;
    position: relative;
}

.cv_left {
    text-align: right;
    flex: 0 1 6%;
    border-right: 1px solid black;
    padding-right: 10px;
    margin-right: 2px;
    padding-top: 2px;
    padding-bottom: 10px;
    margin-bottom: 5px;
    color: var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.cv_right {
    text-align: left;
    flex: 1 0 94%;
    margin-left: 2px;
}

.cv_right_two {
    text-align: right;
    flex: 0 1 20%;
    /* border-right: 1px solid black; */
    margin-right: 2px;
}

.cv_left_two {
    text-align: left;
    flex: 1 0 80%;
    margin-left: 2px;
}

#skill {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
    margin-bottom: 5px;
    /* avoid column and page breaks */
    page-break-inside: avoid;
    break-inside: avoid;
    line-height: 1.0;
    margin: 0px;
    padding: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.skill_title {
    text-align: right;
    flex: 0 0 8%;
    border-right: 1px solid black;
    padding-right: 10px;
    margin-right: 2px;
    font-weight: 700;
}

.skill_list {
    text-align: left;
    flex: 1 1 92%;
    margin-left: 2px;
    /* display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap; */
    display: inline;
}

.skill_list span {
    margin-left: 5px;
    margin-right: 5px;
    display: inline;
}

.pub_auth {
    font-weight: 700;
    font-variant: small-caps;
}

.pub_title,
.pub_journal {
    color: var(--accent-color);
    font: var(--kotoba);
}


/* .cv>* {
    aspect-ratio: 1.0;
} */


/* div.chapter,
div.appendix {
    page-break-after: always;
} */

.poster-section {
    page-break-after: auto !important;
}

.poster-section h1,
.poster-section h2,
.poster-section h3 {
    margin-bottom: 0px;
}

.avoid-break {
    page-break-inside: avoid;
}

.poster-section h1 {
    font-family: 'Comfortaa';
    font-size: 1.5em;
}

.poster-section h2 {
    /* font-family: 'TBUDGothic Std R', 'Yuji Boku'; -- defaults to TBUD*/
    font-size: 1.15em;
    font-variant-ligatures: none;
}

#rxp h2 {
    margin-bottom: 5px;
    margin-left: 5px;
    font-weight: 700;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#rxp-title h1 {
    margin-top: -30px;
    text-align: right;
    border-bottom: 1px solid black;
}


/* #rxp span.emph2 {
    color: var(--accent-color);
} */


/* .poster-section h3 {
    font-family: 'Aron Grotesque', 'TBUD Gothic R', 'Yuji Boku';
    font-size: 1.0em;
    font-variant-ligatures: none;
} */

.edu {
    flex-direction: column !important;
}

.GPA::before {
    content: "GPA: ";
}

.dash_aft::after {
    content: " - ";
}

.accent {
    color: var(--accent-color);
    font-weight: 700;
}

.flex-row {
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.link-section>* {
    margin-left: 2px;
    margin-right: 2px;
}

.link-row {
    display: inline-flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 65%;
    left: 17.5%;
    position: relative;
}

.flex-col {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flex-row-nw {
    display: block;
    width: 100%;
}

.ltab {
    margin-left: 10px;
}

.right {
    text-align: right;
    float: right;
    /* equivalent of hfill in latex */
    margin-left: auto;
    margin-right: 2px;
}

.hon-section ul li {
    width: 100%;
}

#resume {
    display: none;
}

.profile {
    display: none;
}

@media print {
    .profile {
        display: block;
        position: absolute;
        top: 2mm;
        left: calc(2mm + 1cm);
        width: 1.5cm;
        height: 1.5cm;
        border-radius: 50%;
    }
    body {
        font-size: 60% !important;
    }
    .hide {
        visibility: hidden;
    }
    .titles {
        position: absolute;
        /* top: 7mm; */
        /* left: 5mm; */
        top: 2mm;
        left: 25mm;
        font-weight: 700;
        font-size: 80%;
    }
    .link-section {
        position: absolute;
        bottom: 5mm;
        /* top: 4mm; */
        width: 90%;
        left: 5%;
    }
    .xp-section #rxp {
        font-size: 90%;
    }
    .cv_left {
        flex: 0 1 5%;
    }
    .cv_right {
        flex: 1 0 95%;
    }
    .rxp-section {
        /* right: 0px !important; */
        position: relative;
        flex: 0 1 70%;
        /* order: -1; */
    }
    .skill {
        width: 30% !important;
        flex: 0 1 30%;
        /* order: -2; */
    }
    .interests ul {
        columns: 1;
        margin: 0px;
        line-height: 1.1;
        font-size: 11px !important;
    }

    .poster-column {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    .poster-column h1 {
        /* order: -3; */
    }
    .fullscreen {
        display: none;
    }
    @page {
        width: 215.9mm;
        height: 279.4mm;
        margin: 5mm 0mm 0mm 0mm !important;
        background-color: none;
    }
    header {
        display: none;
    }
    .huge {
        margin: 5mm;
        margin-top: 0mm !important;
    }
    /* #rxp-title h1 {
        text-align: left;
    } */
    #skill {
        display: block;
        /* border: var(--accent-color) 1px solid; */
        margin-right: 2mm;
        /* padding: 2mm; */
    }
    .skill hr {
        margin-top: 1mm !important;
        margin-bottom: 1mm !important;
        height: 2mm !important;
    }
    .skill_title {
        display: inline;
        text-align: left;
        border-right: none;
        padding-right: 0px;
        margin-right: 0px;
        font-weight: 700;
    }
    .skill_list span {
        word-break: keep-all;
        margin-left: 2px;
        margin-right: 2px;
    }
    .skill_NLang .label{
        display: none;
    }
    div.items {
        padding: 2px;
        /* outline: none; */
    }
    .pubs-section {
        width: 11.7cm !important; /*11.7*/
        right: 0px !important;
        position: relative;
    }
    .reach-section {
        text-align: left;
        width: 7.5cm !important;
        margin-left: 0.05cm !important;
        margin-right: 0cm !important;
        position: relative;
    }
    .add-section {
        text-align: left;
        width: 7.5cm !important;
        margin-left: 0.05cm !important;
        margin-right: 0cm !important;
        position: relative;
    }
    .about-section {
        width: 8.5cm !important;
        margin-right: 0.5cm !important;
        position: relative;
    }
    table th,
    table td {
        margin: 0px !important;
        padding: 0px !important;
        padding-left: 2px !important;
        padding-right: 2px !important;
        border: none;
        border-style: hidden!important;
        border-spacing: 2px !important;
        color: #000;
        background-color: white !important;
    }
    table th {
        font: Comfortaa;
        size: 100% !important;
    }
    table {
        border-collapse: collapse;
        background-color: white !important;
    }
    .hon-section {
        margin: 0px;
        margin-top: 0.1mm;
        padding: 0px;
        font-size: 100%;
        height: min-content;
        /* width: fit-content; */
        width: 7.5cm !important;
        line-height: 1.4;
    }
    .hon-section table{
        border: none !important;

    }
    .hon-section tr{
        display: grid;
        grid-template-columns: 1fr 3cm;
    }
    .hon-section td:nth-child(1), .hon-section th:nth-child(1){
        order: 1;
    }
    .hon-section td:nth-child(2), .hon-section th:nth-child(2){
        order: 2;
    }
    .hon-section th:nth-child(3){
        order: 4;
        padding-left : 2mm !important;
    }
    .hon-section th:nth-child(4){
        order: 3;
        padding-left : 2mm !important;
    }
    .hon-section td:nth-child(3){
        order: 4;
        padding-left : 2mm !important;
    }
    .hon-section td:nth-child(4){
        order: 3;
        padding-left : 2mm !important;
    }
    .edu-section {
        width: 5.5cm !important;
        left: 0px !important;
        position: relative;
    }
    .xp-section #rxp,
    .reach-section #rxp {
        display: inline-flex;
        flex-direction: row-reverse;
        line-height: 0.8 !important;
        width: 100%;
        margin: 0px;
        padding: 0px;
    }
    .xp-section #rxp .cv_left,
    .reach-section #rxp .cv_left {
        display: inline-flex;
        direction: ltr;
        flex-direction: row-reverse;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        border: none;
        margin: 0mm;
        margin-right: 0mm;
        margin-left: 0mm;
        padding: 0mm;
    }
    .xp-section #rxp .cv_left {
        flex: 0 1 45%;
    }
    .reach-section #rxp .cv_left {
        flex: 1 1 45%;
    }
    .xp-section #rxp .cv_left>*,
    .reach-section #rxp .cv_left>* {
        margin: 0px;
        margin-right: 2mm;
    }
    .xp-section #rxp .cv_right {
        display: inline;
        flex: 1 1 55%;
    }
    .reach-section #rxp .cv_right {
        display: inline;
        flex: 1 1 55%;
    }
    .xp-section #rxp .cv_right>ul,
    .reach-section #rxp .cv_right>ul {
        margin-left: 0px !important;
        margin-bottom: 0px !important;
    }
    .edu-section .edu ul {
        margin-left: 4mm !important;
        margin-bottom: 0px !important;
    }
    #optional {
        display: none;
    }
    #resume {
        display: block;
    }
    * {
        page-break-inside: avoid !important;
        page-break-after: avoid !important;
        page-break-before: avoid !important;
    }
     :root {
        background: none !important;
        background-color: white !important;
    }
}
/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/fonts.css ***!
  \*****************************************************************/
:root {
    --min-font-size: 14px;
    --med-font-size: 18px;
    --hdk-font-size: 22px;
    --uhd-font-size: 28px;
    --kotoba: Aron Grotesque, Montserrat Regular;
    --kotoba2: Kiona, Montserrat;
    --code: 'Poppins', sans-serif;
}

.yk {
    font-family: Yuji Boku;
}

h1 {
    font-family: var(--kotoba2);
}

.huge {
    /* font-size: 80px; */
    font-size: max( min(10vh, 10vw), var(--uhd-font-size));
}


/* .heading {
    font-size: 28px;
} */

.large {
    /* font-size: 22px; */
    font-size: max( min(2.75vh, 2.75vw), var(--hdk-font-size));
}

.normal {
    /* font-size: 18px; */
    font-size: max( min(2.25vh, 2.25vw), var(--med-font-size));
}

.small {
    /* font-size: 14px; */
    font-size: max( min(1.75vh, 1.75vw), var(--min-font-size));
}

.bold {
    font-weight: bold;
}

li {
    font-size: 14px;
    margin-left: 10px;
    list-style-type: disc;
    display: list-item;
}

.card h1 {
    font-size: 1em !important;
    font-family: 'Comfortaa' !important;
}
/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/index.css ***!
  \*****************************************************************/
html {
    background-color: black;
    color: var(--sukaitsuri-iro);
}

body {
    background: transparent;
    font-family: var(--kotoba);
}

.fullscreen {
    max-height: 100vh;
    max-width: 100vw;
    height: 100vh;
    width: auto;
}

.text-center {
    text-align: center;
}

.z-container {
    display: grid;
    grid-template: "container" 1fr;
    overflow: hidden;
}

.z-container>* {
    grid-area: 1/1;
}

.place-center {
    place-items: center;
    place-content: center;
}

.difference {
    mix-blend-mode: difference;
}
/*!******************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/index.scss ***!
  \******************************************************************/
@keyframes autofocus {
    0% {
        filter: blur(0px);
    }
    25% {
        filter: blur(3px);
    }
    50% {
        filter: blur(5px);
    }
    100% {
        filter: blur(0px);
    }
}

@keyframes inv-autofocus {
    0% {
        filter: blur(0px);
    }
    25% {
        filter: blur(1px);
    }
    50% {
        filter: blur(0px);
    }
    100% {
        filter: blur(0px);
    }
}

@keyframes autofocus2 {
    0% {
        filter: blur(0px) saturate(1);
    }
    25% {
        filter: blur(3px) saturate(0.65);
    }
    50% {
        filter: blur(5px) saturate(0.5);
    }
    100% {
        filter: blur(0px) saturate(1);
    }
}

@keyframes color-rotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(180deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes delayshow {
    0% {
        opacity: 0;
        display: none;
    }
    49% {
        opacity: 0;
        display: inline;
    }
    50% {
        opacity: 0;
        display: inline;
    }
    100% {
        opacity: 1;
        display: inline;
    }
}

@keyframes delayhide {
    0% {
        opacity: 1;
        display: inline;
    }
    49% {
        opacity: 0;
        display: inline;
    }
    50% {
        opacity: 0;
        display: inline;
    }
    100% {
        opacity: 0;
        display: none;
    }
}

@keyframes timeout {
    0%,
    100% {
        height: 0;
        opacity: 0;
    }
}

@keyframes blink-1 {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hover-ctrl:hover .hover-agent:not(:hover) {
    animation: autofocus2 1s;
}

.hover-ctrl:hover .hover-cmd:hover {
    animation: inv-autofocus 1s;
}

.delayed {
    animation: delayshow 30s;
}

.timeout {
    animation-name: delayshow, delayhide, timeout;
    animation-duration: 5s, 5s, 2s;
    animation-iteration-count: 1, 1, infinite;
    animation-delay: 0s, 10s, 15s;
}

.delayed-blink {
    animation: blink-1 2s infinite;
    animation-delay: 15s;
}

.fade-in {
    animation: fade-in 0.25s;
}

.slow-color-rotate {
    animation: color-rotate 480s infinite;
    animation-delay: 15s;
}
/*!******************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/layout.css ***!
  \******************************************************************/
@media (max-aspect-ratio: 16/9) {
    .layer {
        max-height: 100%;
        height: 100%;
        width: auto;
    }
}

@media (min-aspect-ratio: 16/9) {
    .layer {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

.layer {
    object-fit: cover;
}

.container {
    object-fit: contain;
}


/* CENTER LAYERS HAVE BAD TOPS (to be expected)*/


/* - for this reason only use grids to stack center layers*/


/* transform will convert blurring to blackscreen*/

.layer-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aps {
    position: absolute;
}

.hidden {
    visibility: hidden;
}

.visor {
    height: 80%;
    top: 10%;
    bottom: 10%;
    position: relative;
}
/*!****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/main.css ***!
  \****************************************************************/
.bkgd-main {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -4;
}

.bkgd-main-0 {
    /* background-size: contain; */
    min-width: 30%;
    min-height: 30%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -6;
    position: relative;
}

@media (min-width:320px) {
    .bkgd-main-0 {
        width: 100%;
    }
}

@media (min-width:801px) {
    .bkgd-main-0 {
        width: 30%;
        right: 5%;
    }
}
/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/main.scss ***!
  \*****************************************************************/

/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/music.css ***!
  \*****************************************************************/
    .sc-widget {
        z-index: 2;
        opacity: 0.7;
        z-index: 2;
        bottom: 0px;
        position: relative;
        margin: 10px 5% 10px 5%;
        width: 90%;
        height: 15vh;
        flex-shrink: 0;
        transition: height 0.1s ease-in;
    }
    
    .sc-widget:hover {
        height: 40vh;
        transition: height 0.1s ease-out;
    }
    
    .bkgd-music {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -4;
    }
    
    .bkgd-music-0 {
        /* background-size: contain; */
        min-width: 30%;
        min-height: 30%;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -6;
    }
    
    .sc-art {
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        aspect-ratio: 1;
        /* position: absolute; */
        display: flex;
        flex: 0 0 auto;
    }
    
    .blackout {
        background-color: black;
        opacity: 1.0;
        /* position: absolute; */
        /* top: 0px;
        left: 0px;
        height: 100%;
        width: 100%; */
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        flex-grow: 1;
        display: flex;
        flex: 1 1 auto;
    }
    
    .sc-widget-panel {
        display: flex;
        flex-direction: column;
    }
    
    @media (min-width:320px) {
        .sc-widget-panel {
            position: absolute;
            width: 100%;
            height: 80%;
            bottom: 10%;
        }
        .sc-art {
            display: none;
            /* z-index: -1;
            opacity: 0.3;
            height: 80%; */
        }
    }
    
    @media (min-width:801px) {
        .sc-widget-panel {
            opacity: 0.0;
        }
        .sc-widget-panel:hover {
            opacity: 1.0;
        }
        .sc-widget-panel {
            position: absolute;
            width: 50%;
            height: 80%;
            bottom: 10%;
            overflow: auto;
        }
        .sc-art {
            display: flex;
            right: 0px;
            z-index: 1;
            border: 1px solid black;
            /* box-shadow: -8px 8px 0px 2px rgba(60, 60, 126, 0.1); */
            margin: 0px 5% 0px 0px;
            opacity: 0.9;
        }
        .sc-art-row {
            display: flex;
            flex-direction: row-reverse;
            height: 100%;
            /* align-items: center; */
        }
    }
/*!**********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/tailwind/dist/tailwind.css ***!
  \**********************************************************************************/
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-grow {
  flex-grow: 1;
}

.border-collapse {
  border-collapse: collapse;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.border {
  border-width: 1px;
}

.text-center {
  text-align: center;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.outline {
  outline-style: solid;
}

.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

