#menu-item-art {
  border-bottom-style: double;
  border-bottom-color: var(--blue);
  border-bottom-width: 4px;
  box-shadow:inset 0px -14px 10px -15px #0099cc;
}

.big-title {
  color: lawngreen;
  font-size: min(30vw, 200px);  
}

#section-paintings{
  backdrop-filter: blur(50px);  
  border-bottom-style: solid;
  border-bottom-color: darkgray;
  border-width: 1px;
}

.paintings-flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 50px 0px;
  margin: 50px 30px;  
}

.painting-description-entry{
  margin: 0px auto;
  top: 10px;
  padding: 10px;
  width: 600px;
  max-width: 100%;
  text-align: center; 
}

.painting-description-entry > h2 {
  color: var(--linkhovercolor);
}

.painting-entry {
  width: 1000px;
  position: relative;
  margin: 0px;
  border-width: 4px;
}

.painting-background { 
  width: 75%;
  display: block;
  margin-left: auto;
}

.painting-legend {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  margin: 0;
  //height: 30%;
  padding: 10px 0px;  
  color: var(--linkhovercolor);
  text-align: right;
  border-top-style: solid;
  border-top-color: var(--blue);
  border-top-width: 1px;
  backdrop-filter: blur(20px); 
}

.painting-container {
  position: absolute;
  width: 40%;
  height: 80%;
  bottom: 10%;
  margin: auto; 
  z-index: 1;
}

.painting {
  position: absolute;
  max-width:100%;
  max-height: 100%;
  bottom: 4px;
  right: 4px;
  object-fit: contain;
  box-shadow: 20px 20px 40px 0px var(--mainbackground);
}

.painting:hover {
  border: 4px double var(--linkhovercolor);
  bottom: 0px;
  right: 0px;
  border-width: 4px;
}

.painting:active {
  border: 4px double var(--blue);
  bottom: 0;
  right: 0;
  box-shadow: 0px 0px 10px 0px var(--blue);
}



