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


a {
    color: #701f1f;
}

p {
  margin: 7px 0px;
}

h2 {
  letter-spacing: 2px; 
  margin-top: 5px;
  margin-bottom: 7px;
  font-family: henny penny;
}

.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: 10px;;
}

.box {
    width: 600px;
    padding: 25px;
    border: 12px solid transparent;
    border-image:url(angiesimages/cutelace.png) 8 fill round;
    border-image-outset: 0px;
    margin: 0 auto;
}

.alltheresources {
  display: inline-block;
  width: 300px;
}
.alltheimages {
  display: inline-block;
  width: 300px;
}

.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;
}