/*things start*/
body {
    background-color: black;
    color: #862626;
    font-family: New Rocker;
    background-repeat: repeat-y;
    background-image: url(angiesimages/BIGlace.png);
    background-position: right;
    background-position-x: 76%;
    background-size: 70px;
}
a {
    color: #701f1f;
}

h2 {
  letter-spacing: 1px;
}

textarea {
  resize: none;
}

.container {
position: absolute;

}

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

marquee {
    font-family: henny penny;
}
/*things end*/

/*actual profile*/

#scaretitle {
    width: 1050px;
    height: 200px;
}

#valerinecheeb {
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(https://f2.toyhou.se/file/f2-toyhou-se/images/92917882_bjjzO4Cgj8tzkjr.png);
    transform: rotate(20deg);
    position: absolute;
    top: 280px;
    left: 860px
}


#directory {
    margin-top: 20px;
    width: 200px;
    border: 30px solid transparent;
    border-image:url(angiesimages/fancylace.png) 12% repeat;
    border-image-outset: 5px;
    height: 300px;
    display: inline-block;
    position: relative;
    top: 4px;
}

#innerdirectory {
    text-align: center;
}

#graph {
    margin-top: 20px;
    width: 100px;
    padding: 5px;
    height: 300px;
    position: absolute;
    display: inline-block;
    border: 30px solid ;

}

#aboutme {
    width: 500px;
    left: 300px;
    top:30px;
    border: 30px solid transparent;
    border-image: url(angiesimages/fancylace.png) 12% repeat;
    border-image-outset: 5px;
    padding: 12px 0px;
    display: inline-block;
}
#inneraboutme {
    text-align: left;
}

#linkylink {
    width: 1000px;
    height: 31px;
    border: 12px solid transparent;
    border-image:url(angiesimages/cutelace.png) 8 fill round;
    border-image-outset: 0px;
    margin-top: 20px;
}

#featuredart {
    margin-top: 20px;
    width: 200px;
    border: 30px solid transparent;
    border-image:url(angiesimages/fancylace.png) 12% repeat;
    border-image-outset: 5px;
    height: 300px;
    display: inline-block;
    position: absolute;
    padding-bottom: 4px;
}

#innerfeaturedart {
    text-align: center;
    background-image: url(https://files.catbox.moe/7x9dfv.png);
    position: relative;
    left:20px;
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
}


#cliquesnrings {
    width: 250px;
    height: 300px;
    position: absolute;
    left: 300px;
    top: 684px;
    border: 30px solid transparent;
    border-image: url(angiesimages/fancylace.png) 12% repeat;
    border-image-outset: 5px;
    display: inline-block;
    margin-right: 30px;
    overflow-y: auto;
}

#innercliquesring {
    text-align: center;
    filter: grayscale(30%);
}

#buttons {
    width: 325px;
    height: 300px;
    position: relative;
    left: 640px;
    top: 25px;
    border: 30px solid transparent;
    border-image: url(angiesimages/fancylace.png) 12% repeat;
    border-image-outset: 5px;
    display: inline-block;
    overflow-x: hidden;
    overflow-y: auto;
}

#innerbuttons {
   text-align: left; 
}

#buttonslist {
    position: relative;
    left: 25px;
    filter: grayscale(60%);
}
/*actual profile end*/

/*media*/
/*phone*/

@media only screen and (max-width: 1300px) {
body {
    background-image: url(angiesimages/BIGlace.png);
    background-position: right;

    background-size: 70px;
}
}

@media only screen and (max-width: 600px) {
body {
    background-image: none;
}
}

/*ipad*/
@media only screen and (max-width: 1024px) {
body {
    background-image: none;
}
}
/*media end*/

/*tooltip*/

.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: 100%;
  left: 50%;
  margin-left: -60px;
  
  opacity: 0;
  transition: opacity 0.5s;
}

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