/* paleta de cores
#F9F7F7 #DCC6E0 #A9CCE3 #7FB3D5 */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto Condensed', serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#container {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: default;
}

header {
  text-transform: uppercase;
  width: 100%;
  height: 200px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 0 2px #c9c9c9;
}

header h1#title {
  color: #c9c9c9;
  position: relative;
  padding-bottom: 0.25rem;
}

header h1#title::after {
  position: absolute;
  content: '';
  background-color: #dcc6e0;
  margin: 0 auto;
  width: 0%;
  height: 3px;
  bottom: 0px;
  left: 0;
  right: 0;
  border-radius: 3px;
  transition: all 0.5s ease-in-out;
}

body:hover h1#title::after {
  width: 100%;
}

section#discography {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 3rem;
}

.item-disc {
  width: 23%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-items: flex-start;
  flex-direction: column;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.item-disc .albumCover {
  position: relative;
  width: 95%;
  height: auto;
  margin-left: 3.6rem;
}

.item-disc .albumCover img {
  position: relative;
  width: 89.7%;
  height: 100%;
  transition: filter 0.5s ease-in-out;
}

.item-disc:hover .albumCover img {
  filter: grayscale(1);
}

.item-disc .albumCover .jewel-overlay {
  content: url('../images/jewel-case.png');
  width: 100%;
  height: auto;
  position: absolute;
  top: -5px;
  left: -30px;
  z-index: 1;
}

.item-disc h3.albumTitle {
  font-size: 1.2rem;
  margin: 1rem 0 0;
}

.item-disc .albumInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  line-height: 1.5rem;
  color: #c9c9c9;
}

.item-disc .albumInfo span:last-child {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.item-disc .albumInfo span:last-child b {
  color: #dcc6e0;
}

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

@media screen and (max-width: 500px) {
  header {
    height: auto;
    padding: 2rem 0;
  }
  header h1#title {
    font-size: 1.5rem;
  }

  .item-disc {
    width: 90%;
    margin: 0 auto 2rem;
  }
}
