.ArtistProfileContainer {
    width: 85%;
    margin: auto;
    margin-top: 80px;
   }

.ArtistProfileContent {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
.ArtistProfileImage{
    /* position: sticky; */
     width: 700px;
   }

  .ArtistProfileImage img{
    /* position: fixed; */
    width: 700px;
    height:'100%';
    object-fit: cover;
  }
 
  .ArtistProfile{
    width: 700px;
    margin: 50px;
     }

    .ArtistProfileInfo {
        margin: 0;
        padding: 0;
     }

    .ArtistProfile h1{
        font-size: 50px;
        font-weight: 700;
        justify-content: center;
        align-items: center;    
        color: #494949;
        font-family: 'Courier New', Courier, monospace;
        text-transform: uppercase;
    }

    .ArtistProfile h2{
         margin-bottom: 10px;
        font-size: 20px;
        font-weight: 700;
        justify-content: center;
        align-items: center;    
        color: #494949;
        font-family: 'Courier New', Courier, monospace;
        /* text-transform: uppercase; */
    }

    .ArtistProfile h3{
        font-size: 17px;
        font-weight: normal;
        justify-content: center;
        align-items: center;    
        color: #494949;
        font-family: 'Courier New', Courier, monospace;
     }

     /* Collection of the day */
 
#Profsection{
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    float: left;
  } 
 
 

 .Profcollection img{
    width: 300px;
    height: 200px;
    background-color: #ffffff;
    margin: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    transition: 0.5s;
    position: relative;
 }
 .Profcollection img:hover{
    transform: scale(1.1);
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}

 .ProfcollectInfo  {
     /* background-color: #FEBE00; */
    display: flex;
    flex-direction: row;
    gap: 10;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
 }

 .Profcollection h1{
    color: rgb(73, 73, 73);
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: 700;
  }

 .ProfcollectInfo  h3,h2,p{
    font-size: 15px;
    color: #494949;
    font-family: 'Courier New', Courier, monospace;
 }
 .collectIcon {
    display: flex;
    flex-direction: column;
    gap: 10;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
 }

 .collectIcon{
    align-self: center;
    width: 30px;
     color: #494949;
 }

 .Profsection button{
    font-family: 'Courier New', Courier, monospace;
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: 0.5s;
}
/* end of collection */
@media screen and (max-width: 768px) {
    .ArtistProfileImage img {
        position: relative;
    }
}