body {
    margin: 0;
    background: linear-gradient(to bottom, #0030618a, transparent 100px), #070B13;
}


.nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5048E5;
    width: 100%;
    height: 50px;
    color: #fff;
    margin-top: 30px;
    gap: 20px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}

hr {
    display: none;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* MÚSICAS */
.music-container {
    display: flex;
    gap: 40px;
    margin-left: 10px;

    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none; 
    scrollbar-width: none;    
}

.music-container::-webkit-scrollbar {
    display: none;
}

.music-container img {
    width: 250px;
    border-radius: 10px;
}

.music-title {
    color: white;
    font-size: 25px;
    margin: 15px 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* LOGO */
.logo {
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    margin-left: 20px;
}

/* MENU */
.icon {
    display: none;
}

.menu-item p {
    margin: 2px 0 0 0;
}


@media screen and (max-width: 728px) {
    .nav-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        font-size: 14px;
        gap: 30px;
    }

    .logo {
        font-size: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner img {
        width: 100%;
    }

    .music-container {
        gap: 15px;
    }

    .music-container img {
        width: 150px;
    }

    .music-title {
        font-size: 20px;
    }
}
