html,
body,
.centerfold {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

:root {
    --lavenderblue: #cce0ff;
    --cottoncandy: #ffcce6;
    --warmblack: #333333;
    --offwhite: #fafafa;
    --dreamgreen: #cfffcb;
    --summeryellow: #fff3b4;
}

body {
    background-color: var(--lavenderblue);
    color: var(--warmblack);
    font-family: Helvetica;
    z-index: 0;
}

img {
    display: block;
    width: 100%; /* or any custom size */
    height: 100%;
    object-fit: contain;
    z-index: 0;
}

button {
    all: unset;
}

a, a:visited {
    text-decoration: none;
    color: var(--warmblack);
}

a:hover {
    color: #ff69b4;
    font-weight: 1000;
    font-size: 9pt;
}


.pseudowindow {
    display: flex;
    flex-direction: row;
    z-index: 0;
}



/* SIDEBAR */

.sidebar {
    flex: 10%;
    display: flex;
    flex-direction: column;
    height: 97.5vh;
    padding: 10px;
    z-index: 1;
    overflow-y: hidden;
    position: relative;
}

.monthly_mixtape_widget {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 1;
}

.cd_case {
    width: 50%;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    object-fit: fill;
    z-index: 2;
    transition: 0.3s ease;
}

.cd_case:hover {
    box-shadow: 0 0 3px 3px var(--cottoncandy);
}

.disc {
    width: 45%;
    aspect-ratio: 1/1;
    display: block;
    position: relative;
    right: 25%;
    z-index: 1;
    transition: 1s ease;
    background: url(spinning_cd.gif) 0 0 no-repeat;
    background-size: contain;
    animation: like-gif steps(28) 1s infinite both;
}

@keyframes like-gif {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

.disc:hover {
    right: -2%;
}

.sidebar_container {
    width: calc(50% - 10px);
    height: 85%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
}

.navbar {
    border: 2px var(--warmblack) solid;
    border-radius: 0 0 150px 150px;
    padding: 10% 0 50% 0;
    z-index: 1;
    transition: 0.5s ease;
    background-color: var(--offwhite);
}

.navbar:hover {
    background-color: var(--summeryellow);
}

.menu_item {
    display: block;
    text-align: center;
    padding-top: 25%;
    padding-bottom: 25%;
    font-size: 8pt;
    z-index: 1;
}

.logo_rect {
    background-color: var(--offwhite);
    height: 20%;
    box-sizing: border-box;
    width: 100%;
    border: 2px var(--warmblack) solid;
    border-radius: 80px/70px;
    position: absolute;
    bottom: 10px;
    padding: 0 10px 0 10px;
    z-index: 1;
    transition: 0.5s ease;
}

.logo_rect:hover {
    background-color: var(--dreamgreen);
}



/* CENTERFOLD */

.centerfold {
    flex: 90%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    z-index: 0;
    padding: 10px;
    position: relative;
}


/* HEADER */

.header
{
    height: 10%;
    width: 100%;
    z-index: 1;
    position: relative;
    top: 0;
    display: flex;
    flex-direction: row;
}

.disc_track_widget
{
    width: 30%;
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, opacity 1s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    top: 0;
    left: 0;
}

.song_details
{
    width: 100%;
    height: 60%;
    object-fit: contain;
    position: relative;
    top: 0;
    left: 0;
}

.songtitle
{
    height: 50%;
    color: hotpink;
    font-weight: bold;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    /*display:flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    flex-shrink: 0;*/
}
.songtitle::-webkit-scrollbar {
    display: none;
}
/*.songtitle:hover
{
    animation: scroll-horizontal 10s linear infinite;
}
@keyframes scroll-horizontal {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-300%);
            transform: translateX(-300%);
  }
}*/

.artist
{
    height: 33%;
    font-size: 11pt;
    margin: 0;
    position: relative;
    top: 0;
    left: 0;
}

.song_controls
{
    width: 25%;
    height: 30%;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.song_controls button
{
    position: relative;
    height: 50%;
    padding-top: 5%;
    padding-bottom: 5%;
}

.song_controls button:hover
{
    filter: invert(69%) sepia(32%) saturate(4706%) hue-rotate(295deg) brightness(99%) contrast(110%);
}

.song_controls button:active
{
    filter: invert(96%) sepia(6%) saturate(16%) hue-rotate(248deg) brightness(115%) contrast(96%);
}

.pauseplay
{
    padding-left: 10%;
    padding-right: 10%;
}




.mainbody
{
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    z-index: 0;
    position: relative;
    padding: 1.4% 10% 1% 10%;
}

.aquarium {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--offwhite);
    height: 100%;
    width: 100%;
    border: 2px var(--warmblack) solid;
    border-radius: 80px 80px 10px 80px;
    padding: 6% 5% 3% 5%;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.jinndititle {
    position: absolute;
    display: block;
    font-size: 44pt;
    top: 3%;
    z-index: 2;
}

/*
.jinndititle span {
    position: relative;
    top: 10px;
    animation: bounce 2s ease-out infinite alternate;
}
 @keyframes bounce
{
    100% { top: -20px; }
} */

.padding_blur {
    height: 1px;
    width: 100%;
    z-index: 2;
    background-color: var(--offwhite);
    box-shadow: 0 0 20px 30px var(--offwhite);
}

.padding_blur .top {
    position: absolute;
    top: 3%;
}

.padding_blur .bottom {
    position: absolute;
    bottom: 3%;
}

.jinndibox {
    height: 100%;
    width: 100%;
    margin-top: 1%;
    padding-top: 1%;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
    overflow-y: scroll;
}

.jinndibox::-webkit-scrollbar {
    display: none;
}

.crow {
    width: 7%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.crow:hover {
    cursor: url("cursor/pet.cur"), auto;
}

.crow:active {
    pointer-events: none;
}

.footer
{
    height: 10%;
    width: 100%;
}