body {
    background-color: var(--green);
    width: 100vw;
    height: 100vh;
    margin: 0;
    font-family: oswald;
    color: white;
}
h1,h2,h3,h4 {
    margin: 0;
}
.audio-div, #play, #prev, #next, #shuffle, #download {
    touch-action: manipulation;
}
audio {
    display: none;
}
#viewport {
    height: 100vh;
    width: 100vw;
    background-color: var(--green);
    overflow-y: hidden;
}
#texture {
    z-index: 4 !important;
    background-image:  url("/assets/textures/texturefabrik-com_concrete_vol-2_10.png") !important;
    opacity: .3;
}
/* Horizontal bars section */
#bars {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100vw;
    height: 60px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    margin: 0;
}

#bar1 {
    height: 20%;
    background-color: var(--white);
}

#bar2 {
    height: 80%;
    background-color: var(--orange);
}

header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 20 !important;
}
#audioH1 {
    position: relative;
    bottom: -10px;
    right: -12px
}
header h1 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 5em;
    color: var(--white);
    position: relative;
}
#erik-mccready {
    position: relative;
    left: -11px;
}
header h2 {
    font-size: 3.5em;
    line-height: 47px;
    /*! bottom: 10px; */
    /*! position: relative; */
}
.Erik {
    position: relative;
    left: 0.7px;
}
#controls {
    top: 9px;
    display: flex;
    gap: 10px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    width: 361px;
    /*! line-height: ; */
}
#song-data {
    position: relative;
    top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 13;
}
#song-data h2{
    font-weight: 400; 
    font-size: 1em;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    line-height: 1;
    text-align: center;
}
#song-data h3{
    font-weight: 300; 
    position: relative;
    /*! top: -10px; */
    font-size: .7em;
    line-height: 2;
}
/* common button look */

#controls .ctl {
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background .12s, transform .08s;
}


/* hover/focus affordances */
#controls .ctl:hover {
    background: rgba(255,255,255,0.08);
    outline: none;
    transform: translateY(-1px);
}
.selected-button {
    background: rgba(255,255,255,0.08) !important;
}

/* icon size */
.material-icons {
    font-size: 28px; /* change to taste */
    line-height: 1;
}

#playbar {
    width: 131%;
    top: -20px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 23.5px;
}
#playbar p {
    margin: 0;
    width: 26px;
}
#time-bar {
    
    width: 70%;
    position: relative;
    margin: 0 3px;
}
.playbar {
    height: 3px;
    position: absolute;
}
#playbar-white{
    width: 100%;
    background-color: var(--white);
}
#playbar-white:hover {
    cursor: pointer;
}
#playbar-orange {
    width: 0;
    background-color: var(--orange);
    pointer-events: none;
}
#playbar-orange:hover {
    cursor: pointer;
}
#audio {
    margin: 60px 15px 0 15px;
    overflow-y: scroll;
}
.section {
    display:flex;
    flex-direction: column;
    overflow:hidden;
    padding-top: 15px ;
    align-items: stretch;
    box-sizing: border-box;
    width: 100%;
}
.section:last-of-type {
    padding-bottom: 15px
}
.section h2 {
    margin: 0;
    font-weight: 500;
    color: var(--back);
    position: relative;
    left: 15px;
}
.sets-container {
    display: flex;
    flex-direction: column;
    /*! overscroll-behavior: none; */
    width: 100%;
}
.set {
    position: relative;
    /*! border: 2px solid var(--orange); */
    border-radius: 15px;
    margin-top: 5px;
    padding: 15px;
    padding-top: 10px;
    width: 100%;
    background-color: var(--back);
    /*! overflow-x: auto; */
    box-sizing: border-box;
}
.set:first-of-type{
    margin: 0;
}
.set h3 {
    font-weight: 400;
    color: var(--white);
    position: relative;
    left: 5px;
    line-height: 1;
    padding-bottom: 5px;
}
.audio-div-container {
    display: flex;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
}
.audio-div {
    all: unset; /* remove all browser default styles */
    box-sizing: border-box;

    padding: 0 15px;
    margin-left: 15px;
    background-color: var(--orange);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;

    text-align: center; /* ensure text is centered */
    line-height: 1; /* normalize line height */
}
.audio-div:first-of-type {
    margin: 0;
}
.audio-div:last-of-type {
    margin-right: 15px;
}
.audio-div:hover {
    cursor: pointer;
}

@media (max-width: 790px) {
    header a {
        font-size: .5em
    }
    header h2 {
      line-height: .84;  
    }
    #erik-mccready {
        top: -30px;
        left: -16px;
        z-index: 21;
    }
    #audioH1 {
        bottom: 24.6px;
        right: -16.0px;
        z-index: 21;
    }
    .Erik {
        left: .35px;
    }
}
