
body {
    font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
    background-image: url(img/band-clown.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    font-weight: bold;
}
main {
    height: 80vh;
    min-height: 720px;
    display: flex;
    align-content: center;
    align-items: center;
}

h1, h2, .usc-track-name, .usc-trackArtist {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.05em;
}

button:focus {
  outline: 2px solid white;
}
button:focus:not(:focus-visible) {
  outline: none;
}
button:focus-visible {
  outline: 2px solid white;
}

#body__overlay {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    min-width: 100vw;
    background-color: rgb(144, 238, 144, 0.85);
    transition: background-color .7s;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}


.pd__flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.usc-player {
    color: white;
    width:fit-content;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    background-color: rgba(0,0,0,0.3);
    padding: 32px;
    border-radius: 16px;
    border: 4px solid rgba(255,255,255,0.75);
    xbox-shadow: 0px 0px 4px 3px rgba(255,255,255,0.75);
    width: 50vw;
    min-width: 800px;
    margin-bottom: 24px;
    margin-top: 100px;
}

.usc-player {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    grid-template-areas:
        " artwork  title "
        " artwork  controls "
        " tracks tracks ";
    grid-column-gap: 24px;
}

.usc-trackArt {
    grid-area: artwork;
    grid-row: 1 /  span 2;
}
.usc-title {
    grid-area: title;
    flex-direction: column;
}
.usc-controls {
    grid-area: controls;
}
.usc-trackList {
    grid-area: tracks;
}

@media screen and (max-width: 800px)  {

    main {
      height: auto;
      display: block;
    }

    .usc-player {
        display: flex !important;
        width: 100%;
        min-width: 100%;
        margin-top: 0;
    }

}

@media screen and (max-width: 500px)  {

    .usc-player {
        margin: 0;
        padding: 12px;
        min-height: 100vh;
        border-radius: 0;
    }
}

.usc-details {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.usc-trackArt {
  margin: 0 25px 25px;
  height: 250px;
  width: 250px;
  background-image: url("../img/logo-blue.png");
  background-size: cover;
  background-position: center;
  border-radius: 15%;
  box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.75);
  transition: background 0.7s linear;
}

.usc-now-playing {
  font-size: 1rem;
}

.usc-track-name {
  xfont-size: 2.4rem;
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  xx-webkit-text-stroke-width: 1px;
  xx-webkit-text-stroke-color: black;
}

.usc-trackArtist {
    xfont-size: 1.8rem;
    font-size: 24px;
}

.usc-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.usc-playpause-track,
.usc-prev-track,
.usc-next-track {
  padding: 25px;
  opacity: 0.8;

  /* Smoothly transition the opacity */
  transition: opacity .2s;
}

.usc-playpause-track:hover,
.usc-prev-track:hover,
.usc-next-track:hover {
  opacity: 1.0;
}

.usc-slider_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    font-size: 16px;
}

/* Modify the appearance of the slider */
.usc-seek_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5px;
  background: rgba(255,255,255,0.5);
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

/* Modify the appearance of the slider thumb */
.usc-seek_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  cursor: pointer;
  border-radius: 50%;
}

.usc-seek_slider:hover {
  opacity: 1.0;
}

.usc-seek_slider {
  width: 60%;
}

.usc-current-time,
.usc-total-duration {
  padding: 10px;
}

.usc-trackList {
    text-align:left;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 24px;
    padding-top: 12px;
}

.usc-trackList li {
  margin-bottom: 12px;
  opacity: 0.8;
  transition: opacity .2s;
}

.usc-trackList li .fa-play-circle {
  font-size: 20px;
  line-height: 30px;
}
.usc-trackList button {
  xfont-size: 1.4rem;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}
.usc-trackList li:hover {
  opacity: 1;
}

.usc-trackList a {
  color: white;
  margin-left: 6px;
}
.usc-trackList a:hover {
  text-decoration: underline;
}


i.fa-play-circle,
i.fa-pause-circle,
i.fa-step-forward,
i.fa-step-backward {
  cursor: pointer;
}


nav {
  width:98%;
}
nav ul {
  margin: 0;
  margin-top: 8px;
  padding: 0;
  text-align: center;
}

nav li {
  display: inline-block;
  padding: 0 8px 0;
  transition: all 0.3s ease-in-out;
}
nav li a, nav li a:visited {
  display: inline-block;
  line-height: 1.2em; 
  color: white;
  text-decoration: none;
  padding: 0 4px;
  font-size: 18px;
  text-shadow: 1px 1px #999;
}
nav li a:hover {
  color: aquamarine;
}