body{
    background-color: #faf5e5;
    font-family: 'Roboto', sans-serif;
    margin: 0 0 50px 0;
}

#header{
    margin-bottom: 20px;
}

#header img{
    width: 100%;
    max-width: 1021px;
    max-height: 221px;
}

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

#content{
    background-color: #fff;
    max-width: 800px;
    padding: 20px 50px;
    border: none;
    border-radius: 20px;
    box-shadow: 7px 8px 7px rgba(0, 0, 0, 0.5 );
}


#head{
    display: flex;
    flex-direction: row;
    align-items: center;
}

#artist-img{
    width: 100px;
    height: 100px;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

#body p{
    text-align: justify;
    line-height: 27px;
}


.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 0px;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
  }
  .gallery-item {
    width: 250px;
    background-color: #1c1c1c;
    padding: 10px;
    border-radius: 10px;
    color: white;
    margin: 0 auto;
  }

  .gallery-item img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
  }

  .gallery-item h3 {
    margin-top: 10px;
    font-size: 17px;
  }

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
  }

  .modal-content {
    margin: auto;
    display: block;
    max-width: 100%;
    margin-top: 50px;
    max-height: 70vh;
    border-radius: 10px;
  }
  

  #caption {
    margin: 20px auto;
    text-align: center;
    color: white;
    max-width: 80%;
  }

  .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }

  .concept-text {
    margin-top: 10px;
    display: none;
    color: white;
  }



@media screen and (max-width: 800px){
    #content{
        padding: 20px 20px;
    }
}

@media screen and (max-width: 425px){
    #main h1{
        font-size: 25px;
    }

    #head h2{
        font-size: 20px;
    }

    #content{
        padding: 10px 10px;
        box-shadow: none;
    }

    #head img{
        width: 75px;
        height: 75px;
    }
    .modal{
        padding-top: 100px;
    }

    .close{
        top: 80px;
    }
    .modal-content {
        margin: auto;
        display: block;
        max-width: 80%;
        margin-top: 70px;
    }
      
}

