body{
    background-color: rgb(194, 252, 255);
}

.title{
    display: flex;
    margin: auto;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 30px;
    font-family: 'Arial', sans-serif;
    margin-top: 15px;

    top: 0;
    width: 1000px;
    background-color: rgb(0, 36, 7);
}

.artist_list{

    margin: auto;
    justify-content: center;
    text-align: center;

    background-color: rgb(212, 255, 218);
    width: 900px;
    margin-top: 40px;
    padding: 40px;
    
}

.link{
    text-decoration: none;
    width: 250px;
    height: 250px;
    display: contents;
    border-radius: 50%;
}


.artist{
    display: flex;
    margin: auto;
    width: 250px;
    height: 250px;
    background-color: black;
    border-radius: 50%;
}
.artist:hover{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

#Gua{
    justify-content: left;
    text-align: left;
    margin-left: 20px;
    background-image: url("../img//profile/Gua_profile.jpg");
    background-size: cover;
    background-position: center;
}

#Kashiwa{
    justify-content: right;
    text-align: right;
    margin-right: 20px;
    background-image: url("../img/profile/Kashiwa_profile.jpg");
    background-size: cover;
    background-position: center;
}

#Louie{
    justify-content: left;
    text-align: left;
    margin-left: 20px;
    background-image: url("../img/profile/Louie_profile.jpg");
    background-size: cover;
    background-position: center;
}

#Asi{
    justify-content: right;
    text-align: right;
    margin-right: 20px;
    background-image: url("../img/profile/Asi_profile.jpg");
    background-size: cover;
    background-position: center;
}

