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(--dreamgreen);
    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;
}

.header {
    width: 100%;
    height: 15%;
    object-fit: contain;
    position: fixed;
    align-content: center;
    justify-content: center;
    top: 0;
    display: flex;
    z-index: 10;
    box-sizing: border-box;
}

.disc
{
    width: 70%;
    position: fixed;
    top: -120%;
    display: block;
    transition: 1s ease;
}
.disc:hover
{
    top: -100%;
}
.walkman
{
    background-color: var(--offwhite);
    width: 90%;
    height: 100%;
    border-bottom-left-radius: 10% 90%;
    border-bottom-right-radius: 10% 90%;
    display: flex;
    flex-direction: row;
    justify-content:  space-between;
    align-items: center;
    position: relative;
    z-index: 11;
    border: 1px var(--warmblack) solid;
    border-top: 0;
    box-sizing: border-box;
}

.playing_modes
{
    width: 15%;
    height: 50%;
    left: 10%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-sizing: border-box;

}

.song_display
{
    width: 40%;
    height: 50%;
    position: relative;
    border: 2px var(--warmblack) solid;
    background-color: var(--offwhite);
    border-radius: 2%/20%;
    object-fit: contain;
    box-sizing: border-box;
    padding: 7px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.songtitle
{
    color: hotpink;
    font-weight: bold;
    position: relative;
    top: 0;
    left: 0;
}

.artist
{
    font-size: 11pt;
    margin: 0;
    position: relative;
    top: 0;
    left: 0;
}

.song_controls
{
    width: 15%;
    height: 50%;
    position: relative;
    right: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.walkman button
{
    position: relative;
    height: 50%;
    padding-top: 5%;
    padding-bottom: 5%;
}

.pauseplay {
    padding-left: 10%;
    padding-right: 10%;
    
}

.walkman button:hover
{
    filter: invert(69%) sepia(32%) saturate(4706%) hue-rotate(295deg) brightness(99%) contrast(110%);
}

.walkman button:active
{
    filter: invert(96%) sepia(6%) saturate(16%) hue-rotate(248deg) brightness(115%) contrast(96%);
}