
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lucida Console", "Courier New", monospace;
    display: grid;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 4.8rem;
    font-weight: 800;
}

h2 {
    font-size: 1.6rem;
    font-weight: 800;
}

h3 {
    font-size: 1.2rem;
    font-weight: 800;
}

h4 {
    font-size: 1.0rem;
    font-weight: 800;
}

h5 {
    font-size: 0.8rem;
    font-weight: 800;
}

h6 {
    font-size: 0.6rem;
    font-weight: 800;
}

p {
    font-family: "Lucida Console", "Courier New", monospace;
}

a {
    text-decoration: none;
}

audio {
    height: 48px;
    width: 720px;
    padding-right: 40px;

}

/* ----- WRAPPER SECTION ----------------------------------- */

.bxe-wrapper {
    display: grid;
    grid-template-columns: 120px 1fr 90px 1fr;
    grid-template-rows: 120px 1fr 24px;
    width: 100vw;
    height: 100vh;
    background-color: #918666;
    color: #ededed;
}

.bxe-logo {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    margin: 3px;
    background-color: #242b1f;
    color: #e3dbd5;
    background-image: url('../images/ironpickle-1.png');
    background-size: 112px 112px;
    background-repeat: no-repeat;
}

.bxe-header {
    grid-column-start: 2;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
    margin-top: 3px;
    margin-bottom: 3px;
    background-color: #242b1f;
    color: #ededed;
}

.bxe-header-title {
    margin-left: 20px;
    margin-top: 14px;
    color: #ededed;
}

.bxe-content {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
    margin-bottom: 3px;
    padding-left: 50px;
    padding-top: 50px;
    background-color: #e3dbd5;
    color: #424242;
    background-image: url('../images/ironpickle-1.png');
}

.bxe-audiobox {
    width: 720px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    background-color: #59714a;
    color: #ededed;
}

.bxe-audiobox-playlist {
    /*background-color: #ff00a9;*/
    color: #ededed;
}

.bxe-audiobox-playlist li {
    width: 680px;
    /*margin-top: 4px;
    margin-bottom: 4px;*/
    padding-top: 4px;
    padding-bottom: 4px;
    background-color: #bcbdbb;
    color: #262525;
}

.bxe-footer {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 4;
    padding-top: 4px;
    background-color: #242b1f;
    color: #ededed;
}

.bxe-footer p {
    text-align: center;
    font-weight: bold;
    padding-top: 2px;
    font-size: 11px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.bxe-footer a {
    color: #ededed;
    text-decoration: none;
}

.bxe-footer a:hover {
    text-decoration: underline;
}


/* ----- PLAYER SECTION ------------------------------------ */

#playlist{
    padding-top: 20px;
    list-style: none;
}

#playlist li a {
    padding-left: 20px;
    padding-top: 2px;
    font-size: 18px;
    color: #474545;
    text-decoration: none;
}

#playlist li a:hover {
    padding-left: 20px;
    font-size: 18px;
    text-decoration: none;
    background-color: #959792;
    color: #a85602;
}

#playlist .current-song a {
    padding-left: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-weight: bold;
    /*background-color: #716f6f;*/
    color: #755d32;
}


/* ------ END CSS ------------------------------------------ */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */