* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #1e1e1e;
    
}
.splashcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    
}

#splash {
    /* darken the picture when mouse is not on picture */
    filter: brightness(0.4);
    transition: all 0.3s ease;
    
}

#splash:hover {
    filter: none;
    transition: all 0.3s ease;
}

nav {
    background-color: #090909;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    background: #1e1e1e;
}

.navbar {
    color: #c9c4c4;
    background: #090909;
    height: 100px;
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 1px solid whitesmoke;
    z-index: 100;
}

.navbar .container {
        background: #090909;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height : 100%;
        
}

.logo {
    font-family: "Alex Brush", cursive;
    font-size: xx-large;
    font-weight: bold;
    background-color: #090909;
}

ul {
    list-style: none;
    background-color: #090909;
}
.navbar ul {
    font-family: "Alex Brush", cursive;
    background-color: #090909;
    display: flex;
}

.navbarlink {
    display: inline-block;
    text-decoration: none;
    color: #c9c4c4;
    background-color: #090909;
    font-size: 2rem;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 20px;
}

.navbarlink:hover {
    background-color: #090909;
    color: #1594e9;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.header {
    background-color: #1e1e1e;
    min-height: 200px;
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header h1 {
    font-family: "Mono Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: #c9c4c4;
    
}

.title1 {
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    width: 100%;
}

.container2 {
    margin: 30px auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: top;
}

.title2 {
    font-family: "Mono Sans", sans-serif;
    color: #c9c4c4;
    font-size: 2rem;
    font-weight: 500;
    display: inline-flex;
    justify-content: space-around;
    align-items: top;
    width: 100%;
}

.text {
    font-family: "Mono Sans", sans-serif;
    font-size: 18px;    
    font-weight: 500;
    line-height: 1.5;
    color: #c9c4c4;
    display: inline-flex;
    padding: 60px;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    width: 100%;
}

.bandimages {
    width: 340px;
    height: 226px; 
    position: relative;
}

.bandimages:hover {
    filter: brightness(0.2)
}

.bandimages:hover + .pictext {
    color: white;
}

.pictext {
    font-family: "Mono-Sans", sans-serif;
    background-color: transparent;
    color: transparent;
    max-width: 340px;
    position:absolute;
    z-index: 5;
}

.pictext:hover {
    color:#c9c4c4
}

.dimmed {
    filter: brightness(0.2);
}

.bandname {
    padding-top: 10px;
    font-family: "Mono Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #c9c4c4;
    text-align: center;
    
}

.bands {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

#bandscontainer {
    padding-top: 30px;
    width: 100%;
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
}

#musiccontainer {
    padding-top: 30px;
    width: 100%;
    display: inline-flex;
    justify-content: space-around;
    align-items: center;

}

#musiccontainer2 {
    padding-top: 50px;
    width: 100%;
    display: inline-flex;
    justify-content: space-evenly;
    align-items: center;

}

.albumimages {
    width: 340px;
    height: 340px; 
    position: relative;
}

#music {
    padding-top: 100px;
}

.albumname {
    padding-top: 10px;
    font-family: "Mono Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #c9c4c4;
    text-align: center;
    
}

.linkscontainer {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}

.dropdown {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 15px;
    
}

/* Style the dropdown button */
.dropbtn {
    font-family: "Mono-Sans", sans-serif;
    color: #c9c4c4;
    text-decoration: none;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover {
    color: #1594e9;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 80px;
    max-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    top: 1500px;
    z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    font-family: "Mono-Sans", sans-serif;
    color: #c9c4c4;
    padding: 3px 5px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: black;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content2 {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 80px;
    max-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    top: 1960px;
    z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content2 a {
    font-family: "Mono-Sans", sans-serif;
    color: #c9c4c4;
    padding: 3px 5px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content2 a:hover {
    background-color: #f1f1f1;
    color: black;
}

.show {
    display: block;
}

.container5 {
    background-color: transparent;
    margin: 80px auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: top;
}

.email {
    font-family: "Mono Sans", sans-serif;
    font-size: 18px;    
    font-weight: 500;
    color: #c9c4c4;
    display: inline-flex;
    padding: 0px;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    width: 100%;
}

.container6 {
    padding-top: 0px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: bottom;
}

.footer {
    font-family: Mono-Sans, sans-serif;
    background-color: #090909;
    color: #c9c4c4;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    height: 100px;
    width: 100%;
    border-top: 1px solid whitesmoke;
    z-index: 100;
}

#soundcloudlogo {
    width: 70px;
    height: 70px;
}

/* Hamburger menu styling */
.toggle-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background-color:#090909;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: #c9c4c4;
    border-radius: 10px;
}

@media (max-width: 768px) {

    .splashcontainer {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 20px;
        
    }

    #splash {
        /* darken the picture when mouse is not on picture */
        filter: brightness(1);
    }

    #bandscontainer {
        display: flex;  
        flex-direction: column; 
    }

    .bands {
        margin-top: 40px;
    }

    #musiccontainer {
        display: flex;  
        flex-direction: column; 
    }

    .albums {
        margin-bottom: 40px;
    }

    #musiccontainer2 {
        display: flex;  
        flex-direction: column; 
        padding-top: 0px;
    }

    .footer {
        font-size: 0.8rem;
        text-align: center;
    }

    #downloadDropdown {
        top: 2350px;
    }

    #listenDropdown {
        top: 2350px;
    }

    #downloadDropdown2 {
        top: 2800px;
    }

    #listenDropdown2 {
        top: 2800px;
    }

    #downloadDropdown3 {
        top: 3250px;
    }

    #listenDropdown3 {
        top: 3250px;
    }

    #downloadDropdown4 {
        top: 3700px;
    }

    #listenDropdown4 {
        top: 3700px;
    }

    #downloadDropdown5 {
        top: 4150px;
    }

    #listenDropdown5 {
        top: 4150px;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar-links li {
        text-align: center;
        margin: 10px 0;
        background-color: #090909;
    }

    .toggle-button {
        display: flex;
    }


    .navbar-links.active {
    margin-top: 140px;
    width: 40%;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0px;
    background-color: #330672;
    }
}