/* for home, signin, art-preview, gallary, dashboard, add-artPiece */ 
:root{
  --rockSalt: 'Rock Salt', cursive;
  --sono: 'Sono', sans-serif;
  --montserrat: 'Montserrat', sans-serif;
}
*{
  font-family: var(--montserrat);
  color:white;
}

body{
  background: black;
}

#homeTitle{
  color:whitesmoke
}
  .artpieces-container {
    display: flex;
    flex-flow: wrap;
    justify-content: space-around;
    align-items:center;
  }

  .user-gallery-name {
    width: 100%;
    font-size: xxx-large;  
    color: antiquewhite;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 5px 5px 5px var(--secondary);
    border: 10px groove var(--light);
    border-radius: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    margin: 10px;
  }


  .card {
    font-size: 1 rem;
    text-align: center;
    width: 400px;
    margin: 20px;
    border: 7px double var(--dark);
    border-radius: 10px;
    background-color: whitesmoke;
    color: black;
    display:flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  }

  #info{
    margin:5px;
  }

  img {
    max-width: 380px;
    max-height: 380px;
   }

 .img-part{
    margin:5%;
    height: 225px;
    width: auto;
  }

  p{
    margin-top: 2px;
    margin-bottom: 0px;
  }

  a {
    color: black;
    text-decoration: none; 
  }

  .signInBox{
    color:whitesmoke;
    font:bold;
    border-radius: 8px;
  }

  button{
    border-radius: 5px;
  }

  #dashboard{
    display: flex;
    flex-wrap: nowrap;
  }

  #sidebar{
    width:10rem;
    color:whitesmoke;
    width:8rem;
    min-width: 8rem;
  }

  #sidebar a{
    color:rgb(28, 129, 196);
    
  }

  #sidebar a:hover{
    color:rgb(128, 194, 238);
    
  }

  #addWorkBtn{
    margin: 15px;
    background-color: whitesmoke;
    padding: 4px 4px;
    font-weight: bold;
  }

  #myLikedBtn{
    margin: 15px;
    background-color: whitesmoke;
    padding: 4px 4px;
    font-weight: bold;
  }

  h5{
    margin: 10px;
  }

  #watchingList{
    margin: 10px;
    margin-left: 15px;
    padding-bottom: 15px;

  }

  #followList{
    margin: 10px;
    margin-left: 15px;
    padding-bottom: 15px;
  }
  #add-artpiece{
    color:whitesmoke;
  }

  #upload-art{
    margin:20px;
    margin-top: 50px;
  }

  .art-description p {
    color: black;
  }

  .recent-comments p {
    color: black;
  }
  
  input {
    color: black !important;
  }

  #commentInput {
    width: 57vw;
  }
 