@font-face {
    font-family: JetBrains_mono;
    src: url("/assets/fonts/JBM-Regular.ttf") format("truetype");
}

@font-face {
    font-family: SpaceMono;
    src: url("/assets/fonts/sm-Regular.ttf") format("truetype");
}

@font-face {
    font-family: SpaceMonoBold;
    src: url("/assets/fonts/sm-Bold.ttf") format("truetype");
}

@font-face {
    font-family: Varela;
    src: url("/assets/fonts/vr-Regular.ttf") format("truetype");
}


@font-face {
    font-family: Fredoka;
    src: url("/assets/fonts/Fredoka-Regular.ttf") format("truetype");
}

/* 
   NYAN CAT COLOR SCHEME

   Background    #0f0e17   dark night sky
   Card          #000033   deep navy
   
   Cat Body      #7f7f7f   grey
   Pop Tart      #ff6ab0   pink
   
   Rainbow 1     #ff0000   red
   Rainbow 2     #ff9900   orange
   Rainbow 3     #ffff00   yellow
   Rainbow 4     #00cc00   green
   Rainbow 5     #0099ff   blue
   Rainbow 6     #9933ff   purple
   
   Text          #ffffff   white
   Text Muted    #ffffff99 white 60%
   Border        #9933ff   purple
   Widget        #0000cc   dark blue

*/



/* Headers */
h1 {
    font-family: Fredoka;
    font-size: 32px;
    color: #ff6ab0;
}

h2 {
    font-family: Fredoka;
    font-size: 20px;
    color: #ff9900;
}

h3 {
    font-family: JetBrains_mono;
    font-size: 16px;
    color: #00cc00;
}

h4 {
    font-family: SpaceMonoBold;
    font-size: 16px;
    color: #0099ff;
    line-height: 1px;
}

h5 {
    font-family: JetBrains_mono;
    font-size: 12px;

    color: #d1d1d1;
}

h6 {
    font-family: SpaceMonoBold;
    font-size: 12px;
    color: #d1d1d1;
    line-height: 0.4px;
}

p {
    font-family: JetBrains_mono;
    font-size: 12px;

    color: #ffffff;
}

/* links */
a {
    color: #ff6ab0;
}

a:hover {
    color: #ffabd2;
}

::selection {
    color: #ffabd2;
}



/* Html */
body {
    background-color: #01014e;
    border: none;
    margin: 0;
    padding: 0;
}

ol {
    list-style-type: "*";
    
}
ol li::marker {
    color: #ffff00;
}

li {
    line-height: 0px;
}


button {
    padding: 5px 7px;

    background-color: #9933ff00;
    color: #d3d3d3;

    border: 2px dotted #6262ff;
}

/* Classes */

.container {
    display: flex;
    gap: 12px;

    width: 100%;
    height: 100%;

    overflow: hidden;

    justify-content: center;
    margin-top: 150px;
}

.holder {
    min-width: 400px;
    min-height: 550px;    

    border:1px dotted #ffabd2;

    justify-content: center;
}

.holder-title {
    border: 1.5px dotted #9933ff;
    border-radius: 6px;

    max-width: 175px;
    overflow: hidden;

    margin-left: -2%;
    margin-right: 0%;
    margin-top: -4%;
    
    line-height: 0;
    row-gap: 0;
    
    background: #000033;
}

.widget {
    border:1px dotted #ffff00;

    margin-left: 25px;
    margin-right: 25px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.widget-title {
    border: 1.5px dotted #9933ff;
    border-radius: 6px;

    max-width: 175px;

    margin-left: -2%;
    margin-right: 0%;
    margin-top: -4%;
    
    line-height: 0;
    row-gap: 0;
    
    background: #000033;
}

.widget-content {
    text-align: center;
}


.image-container {
    margin: 5% auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-holder {
    min-width: 200px;
    min-height: 550px;     
    overflow: hidden;
    
    border:1px dotted #ffabd2;
}

.profile-widget {
    max-width: 200px;
    border:1px dotted #ffff00;

    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;

    line-height: 1;
}


.separator {
    width: 80%;
    height: 2px;
    border: none;
    border-top: 2px dotted #9933ff;
    overflow: hidden;
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}


/* Spotify */
#last-listened {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

#track-art {
    width: 50px;
    height: 50px;
    border: 1.5px dotted #9933ff;
    border-radius: 4px;
    flex-shrink: 0;
}

#track-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

#track-name {
    font-family: Varela;
    font-size: 13px;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px; 
}

#track-artist {
    font-family: Varela;
    font-size: 11px;
    color: #ff6ab0;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#track-bar {
    width: 100%;
    height: 3px;
    background: #ffffff6b;
    border-radius: 99px;
    overflow: hidden;
    margin-left: -5%;
}
