* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#home {
    background-color: #f2f2f2;
}

body,
html {
    min-height: 100vh;
    font-family: 'Alice', serif;
}

body {
    margin: auto;
    overflow: auto;
    background: linear-gradient(315deg, rgba(101, 0, 94, 1) 3%, rgba(60, 132, 206, 1) 38%, rgba(48, 238, 226, 1) 68%, rgba(255, 25, 25, 1) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}

.card p {
    margin-bottom: 1px !important;
}

#artistImage {
    display: none;
}

.btn:hover {
    color: black;
    background-color: rgb(232, 232, 64);
    border-color: yellow;
}

.no-outline:focus {
    outline: none;
    box-shadow: none;
}

.card {
    width: 18rem;
}

.nameArtist {
    font-size: 2em;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 15px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 2px 2px rgb(172, 172, 172);
}

.close {
    color: #000000;
    float: right;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #f51212;
    text-decoration: none;
    cursor: pointer;
}

.volume-controls {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.volume-controls i {
    margin: 0 5px;
    cursor: pointer;
}

.volume-controls input[type="range"] {
    flex: 1;
}

.text-container {
    overflow: hidden;
    width: 100%;
}

.animation {
    animation: animate 8s linear infinite;
    overflow: hidden;
}

@keyframes animate {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.desc img {
    border-radius: 50% 20% / 10% 40%;
}

.labelAlbum {
    color: rgba(119, 0, 0, 0.537);
}

table {
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* .table>:not(caption)>*>* {
    border-bottom-width: 0;
} */

.btn-play {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    padding: 0;
}

.btn-play i {
    color: #000;
    font-size: 18px;
}

.btn-stop {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    padding: 0;
}

.btn-stop i {
    color: #000;
    font-size: 18px;
}

.current-track {
    background-color: yellow !important;
}