.container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
            }

#artist-image {
            background-color: gold;
            margin-top: 5px;
            height: 150px;
            width: 100%;
            position: relative;
            border-radius: 50%;
            cursor: pointer;
            }
      
#artist-image:hover{
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.singer-info {
    position: relative;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;
}

.singer-info img {
    height: 300px;
    border-radius: 30%;
    cursor: pointer;
}

.hidden-text {
    position: relative;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    transition: opacity 0.3s ease;
    height: 300px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
 }

.singer-info:hover .hidden-text {
    opacity: 1;
}

#closePopupButton {
    margin-right: 270px ;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    #artist-image {
        height: 100px;
        width: 100px;
    }

    .singer-info img {
        height: 200px;
    }

    .hidden-text {
        width: 80%;
        font-size: 14px;
    }
}

/* Media query for phones */
@media screen and (max-width: 480px) {
    #artist-image {
        height: 80px;
        width: 80px;
    }

    .singer-info img {
        height: 150px;
    }

    .hidden-text {
        width: 90%;
        font-size: 10px;
    }
}