/* Reset some default browser styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Apply a background color and text color */
body {
    background-image: url('your-background-image.jpg');
    background-size: cover;
    font-family: 'Super Mario 256', sans-serif;
    color: #000;
}

/* Header styling */
header {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
}

/* Menu styling */
nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

/* Main sections styling */
section {
    padding: 50px;
    text-align: center;
    color: #000;
}

h1, h2 {
    font-size: 36px;
}

/* Music grid styling for desktop */
.soundcloud-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* SoundCloud embeds (for both desktop and mobile) */
iframe {
    width: 100%;
    height: 300px;
    scrolling: no;
    frameborder: no;
    allow: autoplay;
}

/* SoundCloud embed description */
div {
    font-size: 10px;
    color: #cccccc;
    line-break: anywhere;
    word-break: normal;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: Interstate, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Garuda, Verdana, Tahoma, sans-serif;
    font-weight: 100;
}

/* Responsive styles for SoundCloud grid on mobile */
@media screen and (max-width: 768px) {
    .soundcloud-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 10px;
    }

    iframe {
        height: 200px;
    }

    div {
        font-size: 8px;
    }
}

/* Footer styling */
footer {
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Include the custom font */
@font-face {
    font-family: 'Super Mario 256';
    src: url('fonts/SuperMario256.ttf') format('truetype');
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    header {
        position: static;
    }

    nav ul {
        display: none;
    }

    nav ul li {
        display: block;
        margin: 0;
    }

    nav ul li a {
        display: block;
        padding: 10px;
        text-align: center;
    }

    /* Adjust other styles for mobile */
}

/* Adjust sizes for phone and computer screens */
@media only screen and (max-width: 600px) {
    .soundcloud-grid iframe {
        height: 200px; /* Adjusted height for phone screens */
    }
}

@media only screen and (min-width: 601px) {
    .soundcloud-grid iframe {
        height: 300px; /* Adjusted height for computer screens */
    }
}
