/* Colours */

.top {
  background: #E9E8D5;
}

.bottom {
  background: #2E2E2E;
}

/* Grid */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2em 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

img { 
  max-width: 100%;
  margin-bottom: 2em;
}

.album-art {
  max-width: 500px;
}

.album-details {
  max-width: 500px;
}


.wallpaper {
  display: flex;
  position: relative;
  width: 100%;
  height: 40vw;
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
  background: #acab9f;
}

.wallpaper::before {
  content: "";
  background-image:url('../img/band.jpeg');
  background-size: cover;
  background-position-y: -20vw;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
}

.wallpaper p {
  position: relative;
  align-self: flex-end;
  width: 100%;
  letter-spacing: .1rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 50px;
}


/* Text */

body {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.5em;
  color: #ACAB9F;
  text-align: center;
  background: #2E2E2E;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.2;
  text-transform: uppercase;
  font-weight: 300;
    
}

h1,h2 {
  margin: 0;
  line-height: 1.5;
}

h1 {
  font-size: 2.65em;
  color: #535353;
}

h2 {
  margin-top: -0.2em;
  font-size: 3.72em;
  color: #9A6363;
}

h3 {
  margin-top: 1em;
  font-size: 1.8em;
  font-weight: 400;
  color: #d1d0bf;
}

h4 {
  color: #9A6363;
  font-size: 3em;
  margin-bottom: 0.8em;
} 

h5 {
  color: #989892;
  margin-bottom: 1em;
  font-size: 1.6em;
}

a {
  text-decoration: none;
}

/* Content */

.store_button {
  background: #98D38B;
  color: #fff;
  height: 5em;
  line-height: 5em;
  font-weight: 600;
  margin: 3em 0 2em 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

a:hover .store_button {
  background: #73A269;
  color: #ddd;
}

img {
  max-width: 100%;
}

#newpatterns {
  border: 20px solid #DCDBC9;
  box-sizing: border-box;
}

#longislandsound {
  border: 10px solid #393939;
  box-sizing: border-box;
  max-width: 220px;
}

.links {
  font-size: 2.5em;
  letter-spacing: 0.2em;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 7em;
  margin: 0 auto 2em auto;
}

.links a {
  color: #CDCCBD;
}

.fa-bandcamp:hover {
  color: #629AA9 !important;
}

.fa-apple:hover {
  color: #FA243B !important;
}

.fa-spotify:hover {
  color: #1ed760 !important;
}

.fa-lastfm:hover {
  color: #CF0E06 !important;
}

/* Bottom columns */

.bottom {
  font-size: 0.7em;
  color: #AAA;
}

.bottom .column {
  max-width: 20em;
}

.bottom a {
  color: #7B7B78;
}

.bottom a:hover {
  color: #5F5F5E;
}

.bottom .links {
  font-size: 3em;
}

/* Media queries */

@media screen and (max-width: 1100px) {
  .container {
    flex-direction: column;
    max-width: 98%;
  }

  .column {
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  body {
    font-size: 1.3em;
  }
  
  h4 {
    font-size: 2.7em;
  }
}
