

:root {
    --content: #000000;
    --currentMonster: 50;
    --maxMonster: 50;
  }
    
  .monsterbar {width: calc((var(--currentMonster) / var(--maxMonster)) * 100%);}
  
  body {
    font-family: 'Trebuchet MS';
    font-size: 15px;
    margin: -0px;
    color: white;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: red;
}
			
.monster-image {
    width: 350px;
    height: 300px;
    margin-top: 40px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    z-index: 2;
}

.monster {
    width: 225px;
    order: 1;
    margin-left:-30px;
}

.postLinks {
    margin-top: 1px;
    margin-left: -2px;
    line-height: 25px;
}

 /* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #000;
  border-radius: 15px;
  color: #fff;
  text-align: left;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  z-index: 1;
  bottom: 150px;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
} 
.skill-title span {
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  letter-spacing: 1px;
}

.progress-bar {
  position: relative;
  width: 175px;
  height: 7px;
  background: #333;
  border: 1px solid #aa7;
  border-radius: 5px;
  box-shadow: 0 0 2px #aa7;
  overflow: hidden;
  z-index: 2;
  display: inline-block;
}

.heart {
  margin-top: -330px;
  text-align: left;
}

.progress-bar:before, .progress-bar:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #aa7;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.progress-bar:before {
  left: -5px;
}

.progress-bar:after {
  right: -5px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00aa00, #00ff00);
  transition: width 0.5s ease;
}

.progress-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: radial-gradient(circle, #aaffaa 0%, transparent 70%);
  opacity: 0.6;
}