div {
  outline: 0px solid red;
}

body {
  background: #000000;
  color: #cccccc;
  font-family: Arial;
  font-size: 10pt;
  line-height: 1.4;
}
body ul {
  list-style-type: disc;
}
body ol {
  list-style-type: decimal;
}
body a {
  color: #666666;
  text-decoration: none;
}
body a:visited {
  color: #666666;
  text-decoration: none;
}
body a:hover {
  color: #666666;
  text-decoration: underline;
}
body a:active {
  color: #666666;
  text-decoration: none;
}
body img {
  max-width: 100%;
  height: auto;
}
body iframe {
  max-width: 100%;
  height: auto;
}
body audio {
  max-width: 100%;
  height: auto;
}
body video {
  max-width: 100%;
  height: auto;
}

.index-container {
  height: 100%;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
.index-container .index-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.index-container .index-content .title {
  color: #996633;
}
.index-container .index-content .headline {
  color: #ff0000;
}

.container {
  display: flex;
}
.container .border {
  display: none;
}
@media only screen and (min-width: 992px) {
  .container .border {
    display: block;
    position: fixed;
    height: 100%;
    box-sizing: border-box;
    top: 0;
  }
  .container .border.left {
    left: 0;
  }
  .container .border.left img {
    width: 100%;
    height: 100%;
  }
  .container .border.right {
    right: 0;
  }
  .container .border.right img {
    width: 100%;
    height: 100%;
  }
}
.container .main {
  display: flex;
  text-align: center;
  padding-left: 5rem;
  padding-right: 5rem;
  margin: auto;
  width: 100%;
}
.container .main .menu {
  position: fixed;
  max-width: 75%;
  left: 1rem;
}
@media only screen and (min-width: 992px) {
  .container .main .menu {
    left: 7rem;
  }
}
.container .main .main-content {
  margin: auto;
  width: 100%;
  padding-left: 9rem;
  text-align: center;
  max-width: 800px;
}
@media only screen and (min-width: 992px) {
  .container .main .main-content {
    padding-left: 15rem;
  }
}
.container .main .main-content .news-date {
  color: #996633;
  font-style: italic;
  font-weight: 700;
}
.container .main .main-content .bio-content {
  text-align: left;
}
.container .main .main-content .disco-title {
  font-weight: 800;
  font-size: large;
}
.container .main .main-content .disco-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .main .main-content .disco-subtitle {
  font-weight: 600;
}
.container .main .main-content .lyrics-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.container .main .main-content .lyrics-item {
  width: 200px;
  padding: 10px;
}
.container .main .main-content .lyrics-albumtitle {
  font-weight: 600;
  font-size: x-large;
}
.container .main .main-content .lyrics-album-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.container .main .main-content .lyrics-album-item {
  max-width: 350px;
  padding: 20px;
}
.container .main .main-content .art-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.container .main .main-content .art-item {
  max-width: 300px;
  padding: 10px;
}
.container .main .main-content .pictures-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.container .main .main-content .pictures-item {
  max-width: 300px;
  padding: 10px;
}
.container .main .main-content .press-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.container .main .main-content .interview-source {
  font-weight: 800;
  font-size: large;
}
.container .main .main-content .interview-text {
  text-align: left;
}

.imgModalSrc {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.imgModalSrc:hover {
  opacity: 0.7;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}