    
  
  
  body {
  margin: 0;
  background-color: #1f1d24;
  background-image: url("/pattern4.png");
  background-repeat: repeat;
  background-size: 100px 100px;
  animation: patternDrift 100s linear infinite;
  overflow-x: hidden;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  font-family: 'Special Elite', monospace;
}
  
@keyframes patternDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px 200px;
  }
}


.banner {
  position: relative;
  margin-top: 30px;
  width: 100vw;          /* todo o topo completo*/
  height: 300px;         
  overflow: hidden;      /* corta o excesso */

}

.banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catinho {
  position: absolute;
  top: 0px;
  right: 10px;

  width: 180px;
  height: auto;

  transition: transform 0.25s ease-out;
  z-index: 3;
  cursor: pointer;
}

.catinho:hover {
  transform:
    translate(-4px, 2px)
    rotate(-8deg)
    scale(1.05);
}

  .aboveheader {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 40px 24px;
}

  .allpage {
  background: #2a2832;
  color: #fff;
  border-radius: 10px;
  padding: 64px 72px;
  outline: 2px solid rgba(255,255,255,0.2);
}

  .ticker {
  background: #1b1b1b;
  width: 105vw;
  margin-left: calc(50% - 50vw); /* full bleed !!!1111!1*/
  color: #fff;
  padding: 6px 0;
  overflow: hidden;
}

 .block {
  margin-bottom: 40px;
  }
  
  .blocktitle {
  font-family: 'Tiny5', monospace;
  background: #32313b;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 30px;
  letter-spacing: 0px;
  border-radius: 14px 14px 0px 0px;
  margin-bottom: -10px;          
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  }
  
  .linkretorno {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: white;
  }
  
  
  .blockbody {
  background: #43424f; 
  color: #f1f1f1;
  padding: 22px 24px;
  border-radius: 12px;
  line-height: 1.7;
  text-align: justify;
  }
  
  .blockbody p {
  margin-bottom: 30px
  }
  
  
  


  
  
  .footer {
  text-align: center;
  font-size: 13px;
  margin: 40px 0;
  color: black;
}