body {
  color: white;
  background-image: url("thebow.gif");
  background-color: black;
  text-align: center;
  justify-content: center;
  cursor: url("cursor.png"), auto;
  cursor: url("thehair.png"), pointer;
}
a {
  text-decoration: none;
  font-size: 2vw;
  color: white;
}
a:hover {
    text-decoration: underline;
    font-size: 2.5vw;
    transition:
      font-size .5s,
      text-decoration .5s
    ;
}
.fire-image:hover {
  content: url('thefire2.gif');
  transition:
    content .5s
  ;
}
#links {
  display: flex;
  flex-direction: column;
}
#audio {
    display: none;
}
#about {
  justify-content: center;
  display: flex;
  flex-direction: column;
}
#about .theband {
  width: 10vw;
}
#heads a img {
  transition: transform .7s ease-in-out;
  margin: 30px;
}  
  
#heads a img:hover {
    transform: rotate(360deg);
}
/*BLOG*/
#bandblog {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.window {
  border: 2px solid #000;
  width: 400px;
  background-color:  #000000;
  box-shadow: 4px 4px 0 #000;
}

.title-bar {
  background: linear-gradient(to right, #0047ab, #1e90ff);
  color: white;
  padding: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
}

.title-text {
  display: flex;
  gap: 5px;
  white-space: nowrap;
}

.window-buttons button {
  background-color: #c0c0c0;
  border: 1px solid #000;
  width: 18px;
  height: 18px;
  margin-left: 2px;
  font-weight: bold;
  font-size: 12px;
  cursor: url("thehair.png"), auto;
}

.content {
  background-color:  #FFFFCC;
  padding: 8px;
  height: 300px;
  overflow-y: auto;
}
.content img{
  justify-content: center;
  align-items: center;
}

.blog-text {
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  white-space: pre-wrap;
  position: relative;
  min-height: 100px;
}

.blog-text.typing::after {
  content: "|";
  animation: blink 1s infinite;
  position: absolute;
  bottom: 8px;
  right: 8px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
#sitebutton {
  width: 10vw;
}

#sitebutton:active {
  transform: scale(0.9);
  transition: transform 0.1s ease;
}
