* {
  font-family: monospace, arial, helvetica;
  color: #444;
}

h1 {
  text-align: center;
  color: #555;
  font-size: 25px;
  padding-left: 105px;
  /*background: grey;*/
}

/* flexbox */

.main-container {
  min-width: 1200px;
}

.box-container {
  display: flex;
  justify-content: center;
  text-align: left;
  margin: 0;
  padding: 0;
}

.box-element {
  width: 400px;
  height: 840px;
  border: 0px solid #f00;
  font-size: 15px;
}

/* box model */

.description {
  /*box1*/
  padding-left: 20px;
  padding-right: 20px;
}

.cover {
  /*box2*/
  padding-right: 9px;
}

.select-media {
  /*box3*/
  padding-left: 20px;
  padding-right: 20px;
  width: 300px;
}

p {
  line-height: 1.3;
  text-indent: 20px;
}

.tracklist-label,
.selectmedia-label,
.links-label,
.discography-label {
  color: #9e5d6a;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding-top: 4px;
  padding-right: 40px;
}

.track-list {
  /*removes the bullet points*/
  list-style: none;
  line-height: 1.6;
  font-size: 15px;
}

.entity,
.track-time {
  margin-right: 0.9em;
  color: #85222c;
}

/* image parameters*/

.album-cover {
  width: 395px;
  height: auto;
  margin: 7px;
}

.img-additional {
  width: 188px;
  margin-left: 7px;
  margin-top: 7px;
}

.img-back {
  /* back cover (disabled in HTML) */
  width: 395px;
  margin: 7px;
}
.img-front-back {
  height: 197px;
  width: auto;
  margin-top: 14px;
}

/* buttons design */

.radio-buttons input[type="radio"] {
  display: none;
}

.radio-buttons label {
  display: inline-block;
  width: 200px;
  height: 30px;
  background-color: #ddd;
  border-radius: 4px;
  margin-top: 10px;
  margin-left: 45px;
  padding-top: 10px;
  border: solid 1px;
  text-align: center;
}

/* attribute selector [] / :checked is a pseudo-class selector that selects the radio buttons that are checked.*/
.radio-buttons input[type="radio"]:checked + label {
  background-color: pink;
}

#buy-button {
  width: 100px;
  height: 30px;
  margin-left: 97px;
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 17px;
  background: pink;
  border-color: #bbb;
  border-radius: 5px;
}

/* "link" and "discography" sections start from here*/

.links {
  /* background: #eee;*/
  width: 320px;
  height: 450px;
  margin-top: 17px;
}

.links img {
  /* adjust the padding between the links (icons+text) and the album covers*/
  padding: 2px;
}

.links {
  padding-top: px;
}

.icons {
  width: 50px;
  height: auto;
}

.socialmedia-link {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
}

.socialmedia-link .text {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(
    -50%
  ); /* shifts the element to the left by half of its own width, which centers it within its parent container. */
  opacity: 0;
  transition: opacity 0.3s;
  padding-top: 5px;
}

.socialmedia-link a:hover .text {
  opacity: 1;
}

/* discography declarations below */

.other-albums {
  width: 200px;
  height: auto;
}

.discography-container {
  height: 259px;
  width: 249px;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  background: #eee;
  text-align: center;
  padding-top: 20px;
  overflow: scroll;
  border-radius: 10px;
}

h2 {
  font-family: monospace, arial, helvetica;
  color: #444;
  font-size: 16px;
  padding-bottom: 5px;
}
