body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

nav {
    text-align: center;
    max-width: 600px; /* Adjust as needed */
    margin: 0 auto;
}

nav ul {
    padding: 0;
    list-style-type: none;
    background-color: #000000;
    overflow: hidden;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav li {
    text-align: center;
    padding: 14px 16px;
}

nav a {
    text-decoration: none;
    color: white;
}

nav a:hover {
    background-color: #333;
}


section {
    padding: 20px;
    margin: 20px auto; /* Center the section */
    max-width: 800px; /* Adjust as needed */
    border-radius: 1px;
    /*box-shadow: 2px 2px 12px 0 rgba(255, 255, 255, 0.1);*/
}

.centered-list {
    list-style-type: none;  /* Removes the default bullet points */
    padding: 0;  /* Removes the default padding */
    margin: 0;  /* Centers the list by removing default margin */
    text-align: center;  /* Centers the text inside the list items */
}

.centered-list li {
    display: inline-block;  /* Displays list items inline but respects padding and margins */
    padding: 10px;  /* Adds some space around the list items */
    margin: 5px;  /* Adds some space between the list items */
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #111;
    color: #fff;
}

.image-container {
    text-align: center;
    margin-top: 20px;
}

img {
    max-width: 100%;
    height: auto;
    /*border: 2px solid #fff;
    border-radius: 8px; */
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px; /* adjust as needed */
    margin: 20px 0; /* adjust as needed */
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* optional, for rounded corners */
}

.soundcloud-tracks {
    display: flex;
    justify-content: space-around;
}

.track {
    flex: 1; /* Each track takes equal width */
    margin: 10px; /* Adjust spacing between tracks */
}


@media screen and (max-width: 600px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        
    }

    nav ul.show {
        display: flex;
    }

    body {
        display: block;
    }

    .soundcloud-tracks {
        flex-direction: column;
    }
}

