      body
        {
          color: white;
          background-color: black;
          font-family: cursive;
          font-size: 24px;
        }
      a:link    { color: #4CAF50; }
      a:visited { color: #4CAF50; }
      a:hover   { color: #00FF00; }
      a:active  { color: #FFFFFF; }
      .painting
        {
          font-size: 24px;
          text-align: center;
          float: left;
          margin-left: 20px;
          margin-bottom: 60px;
          min-width: 440px;
          height: 560px;
          border: thin dotted grey;
          border-radius:  10px;
        }
      .img
        {
          margin: 0 auto;
          max-width: 400px;
          max-height: 400px;
        }
      .title      { font-weight: bold;  }
      .text       { font-size: smaller; }
      .copyright  { font-size: 12px;  text-align: center; }
      .mainContent
        {
          border: thin dotted grey;
          border-radius:  10px;
          width: 90%;
          padding: 20px;
          margin: 10px auto;
          text-align: center;
        }
      .menu
        {
          margin: 0 auto;
          text-align: center;
        }

.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 32px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 320px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 32px;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
  
