@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova-Regular.otf");
}
* { box-sizing: border-box; }
body {
    background-color:#000;
    color:#fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Proxima Nova";
    margin: 0;
    padding:0;
    background-image: url(../media/mainbg.jpeg);
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; 
}
.main_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}
.wrap_container {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    background-color: #0b0b0b;
    padding: 1px 24px;
    border-radius: 13px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 26%);
}
#header nav a, h1 {
    text-align: center;
}
#page-wrap.home #header nav {
    display: block;
}
#header nav a {
    display: block;
    width: 125px;
    max-width: 100%;
    margin: 20px auto;
    text-shadow: 0 0 3px #fff;
    text-transform: uppercase;
    font-size: 20px;
}
a {
    color: inherit;
    text-decoration: none;
    transition: all .3s;
}
#header img {
    max-width: 166px;
}
a:active, a:focus, a:hover, a:target {
    filter: drop-shadow(0 0 0.3125rem #fff);
}

.listen_wrap {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.listen_item {
    margin: 20px;
}
.inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.album_img {
    max-width: 320px;
    height: 320px;
    margin: 6px;
    border-radius: 8px;
    border: 2px solid black;
    box-shadow: 0 5px 10px rgb(0 0 0 / 26%);
}

.listen_btn {
    display: inline-block;
    width: 6.875rem;
    text-align: center;
    border: 1px solid #fff;
    font-size: .9375rem;
    padding: 0.4375rem 0.3125rem;
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
    letter-spacing: .01em;
    border-radius: 8px;
}
.listen_row {
    display: flex;
    align-items: center;
    width: 297px;
    padding-left: 23px;
    margin: 21px 10px;
}

.spaced {
    margin-left: auto;
}

.listen_img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 1.875rem;
    transform-origin: center;
    transform: scale(1.5);
}

.links {
    background-color: #000000b8;
    border-radius: 3px;
    border-radius: 10px;
    padding: 0 2px;
}



.intro {
    min-height: 83vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    letter-spacing: 0.1rem;
    color: #fff;
  }
  .intro-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* relative to nearest positioned ancestor and not nearest block-level ancestor - alternatively: width: 100vw; */
    height: 100%; /* relative to nearest positioned ancestor and not nearest block-level ancestor - alternatively: height: 100vh; */ 
    object-fit: cover;
    z-index:-1;
    /* filter: brightness(50%); */ /* 0% black, 100% original image, values > 100% are allowed for brighter than original image. */
    /* display: none; */
    opacity: 0;
    transition: opacity 0.75s ease-in-out;
  }
  /* .intro-slideshow img:first-child {
    display: block;
    opacity: 1;
  } */
  .intro .intro-header {
    display: flex;
    width: 100%;
    min-height: 83vh;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom right,#000000a3,#00000036);
    padding: 30px 16px;
  }
  .intro h1 {
    font-size: 4rem;
    margin-bottom: 0.75rem;
  }
  .intro p {
    font-size: 1.75rem;
  }
