
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  header, nav, section, footer {
    padding: 20px;
  }
  
  header {
    background-color: #333;
    color: #fff;
  }
  
  section {
    margin-bottom: 20px;
  }
  
  #artists1 img, #artists2 img{
    height: 200px;
    width: 50px;
    border-radius: 10px;
    overflow: hidden;
  }

  #artists1 .artwork, #artists2 .artwork{
    display: inline-block;
    width: 200px;
    text-align: center;
  }
  
  #artists1 img, #artists2 img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
  }
  
  h1, h2, h3{
    font-family: 'Open Sans', sans-serif;
  }

  p{
    font-family: 'Poppins';
  }

  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
  }