.Song-Container {
    max-width: 600px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.Song-Container:hover {
    background: rgba(177, 109, 255, 0.23);
}

.Song-Cover-Image {
    flex: 1;
    max-width: 300px;
}

.Song-Cover-Image img{
    max-width: 300px;
    border-radius: 8px;
    object-fit: cover;
}

.song-details {
    flex: 1;
    padding: 20px;
}

.Song-Urls-Buttons {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.Shazam-Button {
    position: relative;
    display: flex;
    text-decoration: none;
    background: #e4406f;
    background: -webkit-linear-gradient(302deg, #e4406f 0%, #ca2374 50%, #9c297f 100%);
    background: linear-gradient(302deg, #e4406f 0%, #ca2374 50%, #9c297f 100%);
    color: #ffffff;
    font-size: 0.875rem;
    margin: auto;
    margin-top: -15px;
    padding: 5px;
    padding-right: 15px;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    border-radius: 0.5rem;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: .6s ease;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
}

.Shazam-Button a {
    text-decoration: none;
}

.Shazam-Button:hover {
    transform: scale(1.05);
}

.Youtube-Button {
    position: relative;
    display: flex;
    text-decoration: none;
    background: #e4406f;
    background: -webkit-linear-gradient(302deg, #e4406f 0%, #ca2374 50%, #9c297f 100%);
    background: linear-gradient(302deg, #e4406f 0%, #ca2374 50%, #9c297f 100%);
    color: #ffffff;
    font-size: 0.875rem;
    margin: auto; 
    margin-top: 10px;
    margin-bottom: -15px;
    padding: 5px;
    padding-right: 22px;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    border-radius: 0.5rem;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: .6s ease;
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
}

.Youtube-Button a {
    text-decoration: none;
}

.Youtube-Button:hover {
    transform: scale(1.05);
}

.related-songs {
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

.related {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px 5px 5px 5px;
    background: rgba(255,255,255,0.15);
    line-height: 20px;
    flex-direction: column;
    max-width: 300px;
    padding-bottom: 0px;
}

.related h2 {
    margin-top: 0;
    font-size: 20px;
}

.related h3 {
    font-size: 16px;
    margin-bottom: 0px;
}

.related:hover {
    background: rgba(48, 203, 255, 0.3);
}

.related-song {
    transition: all 0.3s ease-in-out;
}

.similar-songs-btn {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    transition-duration: .3s;
    background-image: linear-gradient(111deg, #08819c 0%, #B721FF 100%);
}

.sign {
    position: relative;
    width: 20px;
    left: -7px;
    margin: 0;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign svg {
    width: 20px;
}

.sign svg path {
    fill: white;
}

.similar-songs-text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: .3s;
}

.similar-songs-btn:hover {
    width: 125px;
    border-radius: 40px;
    transition-duration: .3s;
}

.similar-songs-btn:hover .sign {
    width: 20px;
    transition-duration: .3s;
    padding-left: 0px;
}

.similar-songs-btn:hover .similar-songs-text {
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding-right: 10px;
}

.similar-songs-btn:active {
    transform: translate(2px ,2px);
}

.copy-button {
    cursor: pointer;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    margin: 3px;
    padding: 17;
    background-color: #F2F7FA;
    width: 100px;
    height: 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    overflow: hidden;
    transition-duration: 400ms;
}

.copy-button:hover {
    transform: scale(1.05);
}

.copy-button span:first-child {
    color: #0E418F;
    position: absolute;
    transform: translate(-50%, -50%)
}

.copy-button span:last-child {
    position: absolute;
    color: #B5CCF3;
    opacity: 0;
    transform: translateY(100%) translateX(-50%);
    height: 14px;
    line-height: 13px;
}

.copy-button:focus {
    background-color: #0E418F;
    width: 120px;
    height: 40px;
    transition-delay: 100ms;
    transition-duration: 500ms;
}

.copy-button:focus span:first-child {
    color: #B5CCF3;
    transform: translateX(-50%) translateY(-150%);
    opacity: 0;
    transition-duration: 500ms;
}

.copy-button:focus span:last-child {
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
    transition-delay: 300ms;
    transition-duration: 500ms;
}

.copy-button:focus:end {
    background-color: #FFFFFF;
    width: 120px;
    height: 40px;
    transition-duration: 500ms;
}

.copy-related {
    width: 40px;
}

.copy-related span {
    width: 100px;
}

.text-informations {
    padding: 10px 10px;
    margin-top: 10px;
}