* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background-color: #000;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: #b000f5;
}

h1 {
    font-size: 0;
    color: #00000000;
    position: absolute;
    top: -50px;
}

h2 {
    font-weight: bolder;
    font-size: 2rem;
}

svg:hover {
    fill: #ffffff;
}

/* Navigation */
#navBar {
    background-color: #00000000;
    position: fixed;
    width: 100vw;
}

.navLogo {
    height: 30px;
    padding: 15px;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 50px;
}

nav a {
    height: 100%;
    padding: 0 30px 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navButton {
    color: #B000F5;
}

nav a:hover {
    color: #000000;
    background-color: #ffffff89;
}

nav li:first-child {
    margin-right: auto;
}

/* Sidebar Navigation */
.sideBar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color:#59097887;
    backdrop-filter: blur(15px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.buttonPadding {
    padding: 20px 0 0 25px;
}

.sidebarButton {
    color: #ffffff
}

.sideBar li {
    width: 100%;
}

.sideBar a {
    width: 100%;
}

.sideBar a:hover {
    color:#B000F5;
    fill: #B000F5;
    text-decoration: none;
}

.menuButton {
    display: none;
}

/* Hiding SideBar on different resolutions */
@media (max-width: 800px) {
    .hideOnMobile {
        display: none;
    }
    .menuButton {
        display: block;
    }
    nav a:hover {
        background-color: #00000000;
    }
    .sideBar {
        width: 100%;
    }
    
}

/* Main element with CTA */
#main {
    background: url(images/backgroundjay.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

@supports (-webkit-touch-callout: none) {
    #main {
      background-attachment: scroll;
    }
  }

@media (max-width: 800px) {
    #main {
        background-position-y: -50px;
        background-size: auto
    }
}

.mainLogo {
    padding: 250px 0 0 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.streamingButtonDiv {
    width: 100%;
    display: inline-flex;
    padding: 30px 0 200px 0;
    justify-content: center;
    align-items: center;
}

.streamingButton {
    height: 70px;
    width: 70px;
}

.streamingLink {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 3%;
}

.streamingLink:hover{
    color: #580978;
}

.youTubeDiv {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 50px 0;
}

.youtubeImg {
    height: 300px;
    width: auto;
}

@media (max-width: 800px) {
    .youtubeImg {
        height: 200px;
        width: auto;
    }
}

/* Socials */
#socialMedia {
    top: 1000px;
    background-color: #ffffff;
    text-align: center;
    padding: 40px 0 0 0;
}

.svgHoverDark:hover {
    fill: #b000f5;
    
}

.socialMediaButtonDiv {
    width: 100%;
    display: inline-flex;
    padding: 30px 0 30px 0;
    justify-content: center;
    align-items: center;
}

.socialsButton {
    padding: 0 3% 0 3%;
}

/* Robot Text */
#robotText {
    background: url(images/backgroundbed.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 15% 10% 15% 10%;
}

.pText {
    font-weight: bold;
    font-size: 3rem;
    color: #fff;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

/* Responsive Robot Text Section */
@media (max-width: 800px) {

    .pText {
        font-weight: regular;
        font-size: 2rem;
        width: 80%;
    }
}

/* Music */
#music {
    background-color: #fff;
    text-align: center;
    padding: 40px 0 0 0;
}

.albumCoverDiv {
    display: inline-flex;
    justify-content: center;
    padding: 35px;
    align-items: center;
    width: 80%;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
    margin: 15px;
    width: auto;
}
  
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.445);
    scale: 1.02;
}

.cardImg {
    border-radius: 5px 5px 0 0;
    width: 100%;
    height: auto;
}

.container {
    padding: 2px 16px;
}

/* Responsive Music Section */
@media (max-width: 800px) {

    .albumCoverDiv {
        display: inline-block;
        justify-content: center;
        padding: 25px;
        align-items: center;
        width: 80%;
    }
}

/* Contact Section */
#contact {
    background: url(images/backgroundparty.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 100px 0;
}

.h2Light {
    color: #fff;
    text-align: center;
}

.contactDiv {
    width: 100%;
    display: inline-flex;
    padding: 30px 0 30px 0;
    justify-content: center;
    align-items: center;
    list-style-type: none;
}

.emailLink {
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    padding: 0 0 0 15px;
}

.emailLink:Hover {
    color: #B000F5;
}

/* Footer */
#footer {
    color: #ffffff;
    text-align: center;
    padding: 120px 0 120px 0;
}
