/*things start*/
body {
    background-color: black;
    color: #862626;
    font-family: New Rocker;
}

img {
    max-width: 370px;
    max-height: 370px;
    object-fit: contain;
}
a {
    color: #701f1f;
}

h2 {
  letter-spacing: 1px;
}

textarea {
  resize: none;
}

.div {
    display: block;
    unicode-bidi: isolate;
}

marquee {
    font-family: henny penny;
}

.accordion {
 font-family: henny penny;
 font-size: 20px;
  background-color: #000;
  color: #701f1f;
  cursor: pointer;
  padding: 1px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  transition: 0.4s;
 border: 12px solid transparent;
 border-image:url(angiesimages/cutelace.png) 8 fill round;
 border-image-outset: 0px;
 margin-top: 20px auto;
   
}

.active, .accordion:hover {
  background-color: black;
}

.panel {
  overflow: auto;
  padding: 0 18px;
  background-color: black;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

/*things end*/

#container {
    padding: 100px 100px;
}

#art {
    position: relative;
    left: 30px;
}
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #000000;
  color: #fff;
  border: #862626;
  border-style: solid;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 85%;
  left: 67%;
  margin-left: 0px;
  
  opacity: 0;
  transition: opacity 0.5s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

@media only screen and (max-width: 600px) {
img {
    max-width: 300px;
    max-height: 300px;
    object-fit:contain;
}

.panel {
  overflow: auto;
  padding: 5px;
  background-color: black;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
}