@font-face {
    font-family: 'fraktur';
    src: url(/shrines/tourniquet/PixelFraktur.ttf);
}

@font-face {
    font-family: 'times';
    src: url(/shrines/tourniquet/TimesNewPixel.ttf);
}

body {
    background-color: black;
    color: white;
    font-family: 'times';
    font-weight: lighter;
}

h1{
    font-family: 'fraktur';
    text-transform: capitalize;
    font-weight: normal;
    color: #0000ff;
    background-image: url(/shrines/tourniquet/cross.png);
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-top: 2px;
}

p{
    text-indent: 30px;
    margin-left: 25px;
    margin-right: 25px;
}

a, a:visited{
    color: #00aeff;
}

a:hover {
    color: #0000ff;
}

.character:hover {
    opacity: 0.1;
}

.charc:hover {
    filter: drop-shadow(-1px -1px 0 #0000ff)
            drop-shadow(1px -1px 0 #0000ff)
            drop-shadow(-1px 1px 0 #0000ff)
            drop-shadow(1px 1px 0 #0000ff);
}

h3 {
    font-family: 'fraktur';
    color: white;
    font-size: 40px;
    margin: 0;
}

.black b {
    color: #0000ff;
    font-weight: normal;
}

.blue {
    background-color: #0000ff;
    padding: 10px;
    color: black;
    font-weight: bold;

}

.blue h3 {
    color: #000;
}

.blue b {
    color: white;
}

.white {
    background-color: white;
    padding: 10px;
    color: black;
}

.white b {
    color: #0000ff;
    font-weight: normal;
}

#camm {
    width: 50px;
    height: 111px;
    background-image: url(/shrines/tourniquet/camarilla.png);
    filter: drop-shadow(-1px -1px 0 #000)
            drop-shadow(1px -1px 0 #000)
            drop-shadow(-1px 1px 0 #000)
            drop-shadow(1px 1px 0 #000);
}

#eyes {
    width: 134px;
    height: 300px;
    background-image: url(/shrines/tourniquet/intro.png);
}

#curse {
    background-image: url(/shrines/tourniquet/mirror.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 240px;
    height: 450px;
}

h4 {
    margin: 0;
    font-size: 25px;
    text-decoration: underline;
}

.tooltip {
  position: absolute;
  visibility: hidden;
  padding: 5px;
  background-color: white;
  color: black;
  z-index: 1000;
  pointer-events: none; /* Prevents the tooltip from blocking clicks */
  width: 300px;
}

/* Tooltip visible state (used by JavaScript) */
.tooltip-visible {
  visibility: visible;
  opacity: 1;
  display: block;
}