@font-face {
    font-family: 'rochester';
    src: url('rochester.woff2') format('woff2');
}

@keyframes header-flicker {
    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        color: #ffecd7;
        text-shadow:
            0 0 10px #ffd037,
            0 0 80px #ffae00,
            0 0 100px #d87300,
            0 0 130px #881b00;
    }
    20%,
    24%,
    55% {
        text-shadow: none;
    }
}

@media screen and (prefers-reduced-motion) {
    .page-header {
        -webkit-animation: none;
        animation: none;
    }
}

.page-header {
    margin-top: 8px;
    width: 100%;
    height: 148px;
    background-image: url(cover.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-left: 0px;
    margin-right: 0px;
    font-family: rochester;
    font-size: 38px;
    padding-top: 28px;
    animation: header-flicker 3.5s infinite alternate;
}

h1 {
    margin: auto;
    color: whitesmoke;
    width: 95%;
}

.streaming-icons-div {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

body {
    background-color: black;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

p {
    width: 80%;
    color: whitesmoke;
    margin-right: auto;
    margin-left: auto;
}

#paypal-button-container {
    margin-left: auto;
    margin-right: auto;
}

.custom-input {
    height: 38px;
    width: 70%;
    box-sizing: border-box;
    border-left: 1px solid #202020;
    border-top: 1px solid #202020;
    border-bottom: 2px solid dimgray;
    border-right: 2px solid dimgray;
    background-color: black;
    color: whitesmoke;
    caret-color: whitesmoke;
    margin-left: auto;
    margin-right: auto;
}

input:-webkit-autofill {
    -webkit-background-clip: text;
    -webkit-text-fill-color: whitesmoke;
}

hr {
    width: 90%;
}

a {
    color: whitesmoke;
}

::placeholder {
    color: dimgray;
}

.centered-table {
    margin-left: auto;
    margin-right: auto;
}

.centered-table * {
    /* The '*' Changes all content in this table */
    width: 128px;
    height: 128px;
    padding: 2px;
}

#songsTableDiv {
    height: 386px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    overflow: scroll;
    overflow-y: overlay;
    overflow-x: hidden;
}

tr {
    width: 300px;
    height: 128px;
}

td {
    width: 150px;
    height: 128px;
}

.song-info-cell {
    width: 150px;
    height: 128px;
    display: grid;
    grid-template-rows: auto 34px 34px;
}

.song-info-title-paragraph {
    width: 100%;
    margin-top: 0px;
}

.song-info-price-paragraph {
    margin-bottom: 0px;
}

.song-preview-image {
    position: relative;
}

.song-preview-play-button {
    position: absolute;
    width: 64px;
    height: 64px;
    left: 25%;
    top: 25%;
    right: 25%;
    bottom: 25%;
}

.song-preview-div {
    position: relative; 
}

:focus {
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
    width: 4px;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #494949;
}

::-webkit-scrollbar-thumb:hover {
    background: #808080;
}


ul {
    list-style-position: outside;
    color: whitesmoke;
    height: 300px;
    width: 80%;
    margin-left: auto;
    margin-right: 32px;
    overflow: scroll;
    overflow-x: hidden;
    display: inline-block;

}

.page-footer {
    color: #ffecd7;;
    background-image: url(cover2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family: rochester;
    font-size: larger;
    height: 64px;
    padding-top: 32px;
}

.custom-button {
    width: 148px;
    height: 34px;
    background-color: #2C2E2F;
    border: none;
    border-radius: 16px;
    color: whitesmoke;
    margin-left: auto;
    margin-right: auto;
    font-size: medium;
    font-style: italic;
    font-weight: bold;
}

label {
    width: 80%;
    color: whitesmoke;
    font-weight: bold;
}

.loaderStyle {
    border: 4px solid #252525;
    border-top: 4px solid #535353;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin-left: auto;
    margin-right: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.scroll-icon {
    width: 20px;
    height: 20px;
    float: right;
    padding-left: 4px;
}

.link-icons {
    height: 32px;
    width: 32px;
    padding: 8px
}