* {
  margin: 0;
  padding: 0;
}

input:focus, button:focus {
  outline-width: 0;
}

body {
  background: radial-gradient(circle, #fff 20%, #ccc);
  font-family: sans-serif;
}

.main_container {
  display: flex;
  height: 800px;
}

/*******************************
 background styling slideshow
 *******************************/

#headphones {
  background-image: url(./images/pink_headphones.jpg);
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /*-webkit-animation: fadein 2s;
  -moz-animation: fadein 2s;
  -ms-animation: fadein 2s;
  -o-animation: fadein 2s;
  animation: fadein 2s;*/
}

#vinyl {
  background-image: url(./images/bold_vinyl.jpg);
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /*-webkit-animation: fadein 2s;
  -moz-animation: fadein 2s;
  -ms-animation: fadein 2s;
  -o-animation: fadein 2s;
  animation: fadein 2s;*/
}

#radio {
  background-image: url(./images/retro_radio.png);
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /*-webkit-animation: fadein 2s;
  -moz-animation: fadein 2s;
  -ms-animation: fadein 2s;
  -o-animation: fadein 2s;
  animation: fadein 2s;*/
}

#mic {
  background-image: url(./images/retro_mic.png);
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /*-webkit-animation: fadein 2s;
  -moz-animation: fadein 2s;
  -ms-animation: fadein 2s;
  -o-animation: fadein 2s;
  animation: fadein 2s;*/
}

/*****************************
   begin transition effects
******************************/

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/*****************************
    end transition effects
******************************/

header {
  background-color: transparent;
  display: flex;
  position: fixed;
  top: 0;
  /*overflow: hidden;*/
}

h1 {
  color: white;
  margin-left: 20px;
  text-align: center;
  width: 100%;
  padding: 10px 0px;
  text-align: center;
  width: 100%;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.6em;
  text-transform: uppercase;
}

audio {
  /*border: 5px solid ;*/
  height: 35px;
}

#music-player {
  border-radius: 7px;
  width: 425px;
  margin-top: 10px;
  margin-left: 20px;
  opacity: 0.7;
}

.search-form {
  display: flex;
  align-items: center;
  padding: 0px 0px 30px 0px;
  margin-top: 10px;
  margin-right: 20px;
}

input {
  padding: 10px;
}

input[type=search] {
  -webkit-appearance: textfield;
  border: none;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  width: 425px;
  height: 40px;
  font-size: 15px;
  opacity: 0.7;
  border-right: none;
}

input[type=submit] {
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  font-size: 12px;
  opacity: 0.7;
  padding: 12px 10px 13px 10px;
  /*margin-left: -25px;*/
  z-index: 2;
}

/***********************************
        Song Container Styling
************************************/

#results {
  display: flex;
  flex-flow: row wrap;
  margin-top: 20px;
  z-index: 1;
}

.songContainer {
  align-items: center;
  border-bottom: 2px solid gray;
  border-radius: 5%;
  display: flex;
  flex-flow: column nowrap;
  flex: 1 1 15%;
  height: 200px;
  justify-content: space-around;
  margin: 15px;
  text-align: center;
  padding-bottom: 15px;
}

.songContainer:hover {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

img {
  width: 80%;
  height: 65%;
}

img:hover {
  cursor: pointer;
}

.songContainer p {
 margin: 10px 0px;
 color: darkcyan;
}

.songContainer h5 {
text-transform: uppercase;
color: gray;
}

/******************************
       mobile styling
*******************************/

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

* {
  margin: 0;
  padding: 0;
}

header {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

header h1 {
  margin: 0px auto;
  text-align: center;
}

.player {
  position: fixed;
  bottom: 0px;
  width: 100%;
}

.search-form {
  margin: 0px auto;
  padding: 0px;
}

.search {
  border: 3px solid black;
  border-radius: 10px;
  margin: 0px auto;
  /*margin-left: -20px;*/
  padding: 0px;
  width: 80%;
}

input[type=search] {
  opacity: 1.0;
}

input[type=submit] {
  background-color: white;
  opacity: 1.0;
  padding: 13px 10px 13px 10px;
  width: 25%;
}

#music-player {
  margin: 0px auto;
  opacity: 1.0;
  width: 100%;
}

#results {
  flex-direction: column;
  margin: 0em;
  padding-bottom: 01.5em;
}

.songContainer {
  border-radius: 0px;
  flex-flow: row;
  flex: 0 0 5%;
  height: 100%;
  /*height: 5em;*/
  justify-content: space-between;
  margin: 0px;
  margin-bottom: 0.5em;
  padding: 2.2em 0.3em;
}

img {
  height: 100%;
  width: 20%;
}

}
