body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
    background-color: rgb(0, 0, 0);
    color: white;
    font-family: "t26-carbon", monospace;
}

.cta{
    display:inline-flex;
    gap:.6rem;
    align-items:center;
    border:2px solid #2d2d2d;
    padding:.85rem 1.15rem;
    border-radius:999px;
    background:transparent;
    font-family: 'Oswald', serif;
}
.cta:hover{
    border-color:#555;
    transform:translateY(-1px)
}

#cookies{
    width: 100%;
    position: fixed;
    bottom: 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    font-family: "Oswald", sans-serif;
    font-size: 1.3rem;
    display: none;
}

.cookieBtn{
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 50px;
    padding-right: 50px;

    border: solid 2px white;
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.315);

    text-align: center;
    text-decoration: none;

    color: white;

    transition: .5s;
}

.cookieBtn:hover, .cookieBtn:active{
    background-color: white;
    color: black;
}

.intro {
    z-index: 20;
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
  .slider {
    background: rgb(3, 4, 5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
}
  
  .intro-text {
    color: rgb(233, 233, 233);
    font-family: "Oswald", sans-serif;
    font-size: 6rem;
    text-align: center;
}
  
  .hide {
    background: black;
    overflow: hidden;
}
  
  .hide span{
      display: inline-block;
      transform: translateY(100%);
}

h2{
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
}
h3{
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
}

a{
    text-decoration: none;
    color: rgb(206, 206, 206);
    transition: .25s;
}
a:hover, a:active{
    color: white;
}

.storeLink{
    text-decoration: none;
    transform: translateX(-50%);
    color: rgb(134, 134, 134);
    transition: .25s;
}
.storeLink:hover, .storeLink:active{
    color: rgb(31, 31, 31);
}

.storeproducts{
    margin-top: 5%;
}

.navbar{
    background-color: black;
    border-bottom:1px solid #343434;
}

.nav-item a{
    color: rgb(138, 138, 138);
}

.navbar-toggler {
    width: 20px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.middle-bar {
    margin-top: 0px;
}

.navbar-toggler .top-bar {
    margin-top: 0px;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    margin-top: 0px;
    transform: rotate(-135deg);
}

.navbar-toggler.collapsed .top-bar {
    margin-top: -15px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    margin-top: 15px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .toggler-icon {
    background: white;
}

.nav-link:hover, .nav-link:active{
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.banner-box{
    position: fixed;
    top: 1%;
    perspective: 1000;
    transform-style: preserve-3d;
    z-index: -3;
    
}

.banner-box .banner{
    
    transform-style: preserve-3d;
    opacity: 1;
    transition: .5s;
}

.banner-box .banner-hover{
    position: absolute;
    top: 48%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    transform: translate(-50%, -50%) translateZ(300px);
    transform-style: preserve-3d;
    opacity: 0;
    transition: .5s;
}

.banner-box:hover .banner-hover{
    opacity: 1;
}

.banner-box:hover .banner{
    opacity: 1;
}


.welcome{
    text-align: center;
    font-size: 3rem;
    padding-bottom: 20%;
}

.music{
    /* background-color: black; */
    background: linear-gradient(to top, black 95%, rgb(0, 0, 0, 0));
    margin-top: 60%;
}

.cover-holder{
    position: relative;
    transform-style: preserve-3d;
}

.cover-holder > .cover-content {
    z-index: 10;
    border-radius: inherit;
    opacity: 1;
    transition: .5s;
}

.cover-content:hover{
    opacity: 1;
}

.cover-holder .hover-listen-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(200px);
    transform-style: preserve-3d;
    opacity: 0;
    transition: .5s;
}

.cover-holder:hover .hover-listen-text{
    opacity: 1;
}

.cover-holder .music-img{
    opacity: 1;
    transition: .5s;
}

.cover-holder:hover .music-img{
    opacity: 0.65;
}

.the-journey{
    background-color: #000000;
    padding-top: 2%;
    padding-left: 0;
    padding-right: 0;
}

.music-2{
    background-color: black;
    margin-top: 3%;
}

/* .music-cover-page{
    width: 700px;
    height: 700px;
} */

.hover-play{
    position: absolute;

    top: 0;
    left: 0;

    height: 100%;
    width: 100%;

    opacity: 0;
    transition: 1s;
}

.hover-play:hover, .hover-play:active{
    opacity: 100%;
}

.hover-play-2{
    position: absolute;

    top: 0;
    left: 0;

    height: 100%;
    width: 75%;

    opacity: 0;
    transition: 1s;
}

.hover-play-2:hover, .hover-play-2:active{
    opacity: 100%;
}

.more-button{
    margin-top: 10px;
}

.ListenLink{
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 50px;
    padding-right: 50px;

    border: solid 2px white;
    border-radius: 25px;
    background-color: black;

    text-align: center;
    text-decoration: none;

    color: white;

    transition: .5s;
}

.ListenLink:hover, .ListenLink:active{
    background-color: white;
    color: black;
}

.contact-info{
    text-align: center;
}

.inputbar{
    appearance: none;
    border-radius: 0;
}

.inputbar{
    display: flex;
	flex-direction: column-reverse;
	position: relative;
	padding-top: 1.5rem;
	margin-top: 1.5rem;
}

.forms-label{
    color: #868686;
    position: absolute;
	top: 1.5rem;
	transition: .25s ease;
}

.forms-label-checkbox{
    color: #868686;
    position: absolute;
	top: 1.5rem;
    transform: translateY(-1.5rem);
}

input{
    color: white;
    border: 0;
	z-index: 1;
	background-color: transparent;
	border-bottom: 2px solid #868686; 
	font: inherit;
	font-size: 1.125rem;
	padding: .25rem 0;
    transition: .25s;
}

input:focus, textarea:focus{
    outline: 0;
    border-bottom-color: #ffffff;
}

.focused > .forms-label{
    color: #ffffff;
    transform: translateY(-1.5rem);
}

input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(0.5em);

    display: grid;
    place-content: center;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
}

input[type="checkbox"]:checked::before {
    background-color: #000000;
    transform: scale(1);
}

textarea{
    color: white;
    border: 0;
	z-index: 1;
	background-color: transparent;
	border-bottom: 2px solid #868686; 
	font: inherit;
	font-size: 1.125rem;
	padding: .25rem 0;
}

.EmailMe{
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 7rem;

    color: white;
    background-color: black;

    position: absolute;
    top: 50%;
    
    transform: translateY(-50%);

    width: 100%;

    opacity: 1;
    transition: 0.5s;
}
.EmailMe:hover{
    opacity: 0;
}

.Email{
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 7rem;

    color: white;

    position: absolute;
    top: 50%;
    
    width: 100%;
    
    transform: translateY(-50%);

    opacity: 1;
}

.submit-button{
    margin-top: 10px;
}

.SubmitLink{
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 50px;
    padding-right: 50px;

    border: solid 2px white;
    border-radius: 25px;
    background-color: black;

    text-align: center;
    text-decoration: none;

    color: white;

    transition: .5s;
}

.SubmitLink:hover, .SubmitLink:active{
    background-color: white;
    color: black;
}

.aboutEye{
    position: fixed;
    top: 50%;
    transform: translate(-1%, -50%);
}

.textAbout{
    background: rgba(0,0,0,0.8);
    backdrop-filter: saturate(180%) blur(10px);
}

.about-me-section{
    margin-top: 1%;
    position: fixed;
    top: 35%;
    transform: translateY(-50%);
}

.about-me-section h2{
    margin-top: 5%;
}

.about-car-img{
    perspective: 1000;
    transform-style: preserve-3d;
}

.carousel-item{
    perspective: 1000;
    transform-style: preserve-3d;
    text-align: center;
}

.carousel-item .about-text{
    font-family: 'Oswald', serif;
    font-size: 5rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) translateZ(200px);
    transform-style: preserve-3d;
    opacity: 0;
    transition: .75s;
}

.carousel-item:hover .about-text{
    opacity: 1;
}

.center{
    text-align: center;
}

.right{
    text-align: right;
}

.left{
    text-align: left;
}

.gallery-image{
    filter: saturate(.2) blur(0px);
    
    transition: .5s;
}
.gallery-image:hover, .gallery-image:active{
    filter: saturate(1);
}

.CountdownTimer{
    background: rgba(0,0,0,0.8);
    backdrop-filter: saturate(180%) blur(10px);
    position: absolute;
    top: 50%;
    transform:translateY(-50%) ;
}

hr.solid {
    border-top: 3px solid #bbb;
}

.footer-bs {
    border-top:1px solid #111;
    background-color: #000000;
	padding: 60px 40px;
	color: rgba(255,255,255,1.00);
	margin-bottom: 0px;
	border-bottom-right-radius: 6px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 6px;
}

.footer-bs .footer-brand, .footer-bs .footer-nav, .footer-bs .footer-social, .footer-bs .footer-ns { 
    padding:10px 25px; 
}

.footer-bs .footer-nav, .footer-bs .footer-social, .footer-bs .footer-ns { 
    border-color: transparent;
}

.footer-bs .footer-brand h2 { 
    margin:0px 0px 10px; 
}

.footer-bs .footer-brand p { 
    font-size:12px;
    color:rgba(255,255,255,0.70); 
}

.footer-bs .footer-nav ul.pages { 
    list-style:none; 
    padding:0px; 
}

.footer-bs .footer-nav ul.pages li { 
    padding:5px 0px;
}

.footer-bs .footer-nav ul.pages a { 
    color:rgba(255,255,255,1.00); 
    font-weight:bold; 
    text-transform:uppercase; 
}

.footer-bs .footer-nav ul.pages a:hover { 
    color:rgba(255,255,255,0.80); 
    text-decoration:none; 
}

.footer-bs .footer-nav h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom:10px;
}

.footer-bs .footer-nav ul.list { 
    list-style:none; 
    padding:0px; 
}

.footer-bs .footer-nav ul.list li { 
    padding:5px 0px;
}

.footer-bs .footer-nav ul.list a { 
    color:rgba(255,255,255,0.80); 
}

.footer-bs .footer-nav ul.list a:hover { 
    color:rgb(255, 255, 255); 
    text-decoration:none; 
}

.footer-bs .footer-social ul { 
    list-style:none; 
    padding:0px; 
}

.footer-bs .footer-social h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.footer-bs .footer-social li { 
    padding:5px 4px;
}

.footer-bs .footer-social a { 
    color:rgba(255,255,255,1.00);
}

.footer-bs .footer-social a:hover { 
    color:rgba(255,255,255,0.80); 
    text-decoration:none; 
}

.footer-bs .footer-ns h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom:10px;
}
.footer-bs .footer-ns p { 
    font-size:12px; 
    color:rgba(255,255,255,0.70); 
}

.contact-foot{
    margin-top: 0%;
}

.signinform{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.signin-form{
    padding: 30px;
    border-radius: 2%;
    background-color: #000000bc;
}

@media only screen and (max-width: 576px){
    .SideBarButton {pointer-events: all; cursor: pointer;}

    .product{width: 95%;}

    .product img{
        margin-top: 20px;
        margin-bottom: 12px;
    }
    
    .product button{
        margin-bottom: 5px;
    }

    .product-title{font-size: 1.4rem;}

    .product-price{font-size: 1rem;}

    .default-disable{
        display: unset;
    }

    .default-disable-small{
        display: unset;
    }

    .can-disable{
        display: none;
    }

    .can-disable-small{
        display: none;
    }

    .all-releases p{
        font-size: 1rem;
    }

    .all-releases img{
        margin-bottom: 0px;
    }

    .music-cover{
        margin-bottom: 5%;
    }

    h2{
        font-size: 2.5rem;
    }

    .EmailMe{
        font-size: 3rem;
        top: 30%;
    }

    .Email{
        font-size: 2.5rem;
        top: 30%;
    }

    .right-music{
        transform: translateY(0%);
    }

    .about-me-section{
        margin-top: 15%;
    }

    .music-2{
        margin-top: 12%;
    }

    .contact-foot{
        margin-top: 0%;
    }
    
    .contactform{
        margin-top: 0%;
    }
}

@media only screen and (min-width: 576px){
    .SideBarButton {pointer-events: none; cursor: default;}

    .product{width: 24%; margin-right: .40%;}

    .product img{
        margin-top: 8px;
        margin-bottom: 12px;
    }
    
    .product button{
        margin-bottom: 3px;
    }

    .product-title{font-size: 0.8rem;}

    .product-price{font-size: 0.7rem;}

    .default-disable{
        display: unset;
    }

    .default-disable-small{
        display: none;
    }

    .can-disable{
        display: none;
    }

    .can-disable-small{
        display: flex;
    }

    .all-releases p{
        font-size: 1rem;
    }

    .all-releases img{
        margin-bottom: 10px;
    }

    h2{
        font-size: 4rem;
    }

    .EmailMe{
        font-size: 3rem;
        top: 30%;
    }

    .Email{
        font-size: 2.5rem;
        top: 30%;
    }

    .right-music{
        transform: translateY(50%);
    }

    .contact-foot{
        margin-top: 0%;
    }
    
    .contactform{
        margin-top: 0%;
    }
}

@media only screen and (min-width: 768px){
    .product-title{font-size: 1.1rem;}

    .product-price{font-size: 0.9rem;}

    .default-disable{
        display: unset;
    }

    .can-disable{
        display: none;
    }

    .all-releases p{
        font-size: 1rem;
    }

    .all-releases img{
        margin-bottom: 10px;
    }

    .footer-bs .footer-nav, .footer-bs .footer-social, .footer-bs .footer-ns { 
        border-left:solid 1px rgba(255,255,255,0.10); 
    }

    .EmailMe{
        font-size: 4rem;
        top: 40%;
    }

    .Email{
        font-size: 4rem;
        top: 40%;
    }
    .contact-foot{
        margin-top: 0%;
    }
    
    .contactform{
        margin-top: 0;
    }
    
}

@media only screen and (min-width: 992px){
    .product-title{font-size: 1.2rem;}

    .product-price{font-size: 1rem;}

    .default-disable{
        display: none;
    }

    .can-disable{
        display: unset;
    }

    .all-releases p{
        font-size: .9rem;
    }

    .EmailMe{
        font-size: 5rem;
        top: 50%;
    }

    .Email{
        font-size: 5rem;
        top: 50%;
    }
    .about-me-section{
        margin-top: 10%;
    }

    .contact-foot{
        margin-top: 0%;
    }
    
    .contactform{
        margin-top: 0;
    }
}

@media only screen and (min-width: 1200px){
    .product-title{font-size: 1.4rem;}

    .product-price{font-size: 1.2rem;}

    .all-releases p{
        font-size: 1.1rem;
    }
    .contact-foot{
        margin-top: 0%;
    }
    
    .contactform{
        margin-top: 0;
    }
}