html * {
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: white;
}

header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  width: 100%;
  margin: auto;
  z-index: 3;
  box-shadow: 0 2px 10px 0 hsla(0, 0%, 0%, 0.2);
}

#headerLogo {
  order: 1;
}

#headerLinks {
  order: 1;
}

header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  order: 2;
}

header li {
  display: inline;
  margin: 0 10px 0 10px;
}

.bai {
  font-family: "Bai Jamjuree" , sans-serif;
}

.fontMed {
  font-size: 25px;
}

.navLinks a:link{
  color: #2d2d2d;
  text-decoration: none;
}

.navLinks a:visited{
  color: #2d2d2d;
}

.navLinks a:hover{
  color: #2d2d2d;
}

.navLinks a:active{
  color: #2d2d2d;
}

#headerLinks > .navLinks a {
  position: relative;
}

#headerLinks > .navLinks a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

#headerLinks > .navLinks a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: 100%;
}

main h1 {
  font-size: 50px;
}

#indEP {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  width: 100%;
  background-image:   radial-gradient(circle, hsla(177, 75%, 76%, 0.7), #0BD1CD),
  url("../images/conCircle.png");
  background-position: center;
}

#indEP h2{
  margin-bottom: 10px;
}

#indEP img {
  width: 700px;
  height: 700px;
  border: 5px solid white;
  box-shadow: 0 12px 10px 0 hsla(0, 0%, 0%, 0.2);
}

#merch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
  background-color: hsla(177, 75%, 76%, 0.2);
}

#merchItems{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 75%;
}

.slide {
  position: relative;
  display: inline-block;
  overflow: hidden;
  flex-shrink: 2;
  margin: 0 10px 20px 10px;
}

.slide img {
  display: inline-block;
  vertical-align: middle;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(43, 103, 101, 0.9);
  padding: 20px;
  color: white;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.slide:hover .slide-content {
  transform: translate(0, 0);
}

.slide-bottom .slide-content {
  transform: translate(0, 100%);
}

.raise {
  box-shadow: 0 12px 10px 0 hsla(0, 0%, 0%, 0.2),
              0 -2px 10px 0 hsla(0, 0%, 0%, 0.2);
}

#videos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
  background-image: radial-gradient(circle, hsla(177, 75%, 76%, 0.7), #0BD1CD);
  background-position: center;

}

#YTvid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.embVid {
  position: relative;
  padding: 0 5px 0 5px;
}

@media only screen and (min-width: 767px) and (max-width: 793px){
  #videos {
    display: flex;
    flex-direction: column;
    align-content: center;

    width: 95%;
  }

  #YTvid {
      flex: 0 0 50%;
      display: flex;
      flex-flow: column wrap;
      width: 100%;
    }

  .embVid {
    position: relative;
    height: 0;
    padding-bottom: 75%;
    margin-bottom: 1rem;
    overflow: hidden;
  }

  .embVid iframe,
  .embVid object,
  .embVid embed,
  .embVid video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }

  .embVid.widescreen {
    padding-bottom: 56.25%;
  }
}

#releases {
  text-align: center;
}

.release-item {
  margin-top: 10px;
  margin-bottom: 15px;
}

.release-item a:visited {
  color: #2d2d2d;
}
.release-item a:hover {
  color: #2d2d2d;
}
.release-item a:active {
  color: #2d2d2d;
}
.release-item a:link {
  color: #2d2d2d;
}

#releases ol {
  margin: 0;
  padding: 0;
}

.spotify-play-embed {
  height: 380px;
  box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2);
}

.tracklist {
  margin-top: 10px;
}


#mailList {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
  background-color: hsla(177, 75%, 76%, 0.1);
}

.mail-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.mail-form input{
  display: inline-block;
  width: 100%;
  padding: 0 20px;
  height: 50px;
  background: white;
  border: solid 2px #e6e6e6;
  bottom-border-width: 3px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 25px;
}

.mail-form input:not(:last-child) {
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px 0 hsla(0, 0%, 0%, 0.08);
  text-align: center;
}


.mail-form input[type="email"]:focus,
.mail-form input[type="email"]:active {
  border-color: #ccc;
  box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);
}

.mail-form input[type="submit"] {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 20px;
  cursor: pointer;
  border-top: 0;
  box-shadow: 0 2px 10px 0 hsla(0, 0%, 0%, 0.2);

}

.mail-form input[type="submit"]:hover {
  background-color: #0D1F1F;
  color: white;
  border: 0;
  box-shadow: 0 8px 6px 0 hsla(0, 0%, 0%, 0.2);
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  background-image: radial-gradient(circle, hsla(177, 75%, 76%, 0.7), #0BD1CD);

}

#smIcons a {
  margin: 0 10px 0 10px;
  padding: 20px 10px 10px 10px;
}

#smIcons a:hover {
  opacity: 0.5;
}

footer p {
  margin-top: 20px;
}
