.rubik-mono-one-regular {
  font-family: "Rubik Mono One", monospace;
  font-weight: 400;
  font-style: normal;
}

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body{
	padding:0;
	margin:0;
	font-family: "Inter", sans-serif;
	background-color:#0b0b0b;
	color:#f9f9f9;
	min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/*= IDs =*/

#header{
	text-align: center;
	padding-top:20px;
	margin:0 auto;
	position:sticky;
	top:0;
	background-color:#0b0b0b;
	width:100%;
	padding-bottom:10px;
	border-bottom:5px double red;
	z-index: 1000;
}

#footer{
	width:100%;
	margin-top:250px;
	text-align: center;
	padding-top:10px;
	padding-bottom:50px;
	border-top:5px double red;
}

#navigation{
	display:flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap:10px;
	color:red;
	flex-wrap: wrap;
}

#navigation a{
	color:red;
	border:1px solid red;
	padding:5px;
	border-radius:5px;
	text-decoration: none;
	font-weight: bold;
}

#navigation a:hover{
	color:#f9f9f9;
}

/*= Classes =*/

.content{
	margin:0 auto;
	display:flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.section{
	border:1px solid #f9f9f9;
	padding:10px;
	border-radius: 5px;
	background-color: #0b0b0b;
	color:#f9f9f9;
	width:100%;
}

.deadsection{
	background: rgba(255, 0, 0, .3) !important;
}

.woundedsection{
	background: rgba(255, 0, 0, .1) !important;
}

.assaultsection{
	background: rgba(128, 0, 128, .5) !important;
}

.headstone {
  border-bottom: 0;
  position: relative;
  margin-bottom: 10px;
  border-bottom: 0;
  font-size: 25px;
  font-family: "Rubik Mono One", monospace;
}

.title{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap:10px;
}

.title-left {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap:10px;
}

.a{
	display: flex;
	flex-direction: column;
	gap:0px;
	padding:25px;
}

.b{
	display:flex;
	flex-direction:column;
	gap:10px;
	width:1000px;
}


/*= Headings =*/

h1, h2, h3, h4, h5{
	padding:0;
	margin:0;
}

h1{
	font-size:90px;
	line-height:90px;
	text-align: center;
	padding:10px;
	font-family: "Rubik Mono One", monospace;
}

h2{
	font-size: 55px;
	font-style: italic;
	text-align: center;
	font-family: "Rubik Mono One", monospace;
}

h3{
	font-size: 45px;
	padding-top:20px;
	text-align: center;
	font-family: "Rubik Mono One", monospace;
}

h4{
	font-size:20px;
	font-weight: 700;
	letter-spacing: 1px;
	padding:0;
	margin:0;
}


/*= Paragraphs =*/

p{
	font-size: 18px;
	line-height:24px;
	padding:0px;
	margin:0;
	padding-top:15px;
}

.para-dead, .para-wounded, .para-exec, .para-repealed, .para-assault{
	color: #f9f9f9;
	margin-top:10px;
	padding:10px 10px 5px 10px;
	border-radius:5px;
}

.para-dead{
	background-color: darkred;
}

.para-wounded{
	background-color: red;
}

.para-repealed{
	background-color: black;
	border:1px solid #f9f9f9;
}

.para-assault{
	background-color: purple;
}

#footer p{
	font-family: "Rubik Mono One", monospace;
	color:red;
}

/*= Links =*/

a{
	color:#fff;
}

a:hover{
	color:#0b0b0b;
}

a.anchor{
    display: block;
    position: relative;
    top: -120px;
    visibility: hidden;
}

a.logo{
	font-size: 30px;
	text-decoration: none;
	color:white;
}

a.logo:hover{
	color:red;
}

a.afsoc{
	color:red;
	text-decoration:none;
}

a.afsoc:hover{
	color:#f9f9f9;
}

/*= Spans =*/

.star{
	color:blue;
}

.strike{
	text-decoration: line-through red 2px;
}

.red{
	color:red;
}

.blue{
	color:blue;
}

.expand {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  animation: sideBounce 3s ease-in-out infinite alternate;
  text-align: center;
  font-style: italic;
  letter-spacing: .5px;
  filter: drop-shadow(2px 2px 4px #0b0b0b)
}

@keyframes sideBounce {
  from {
    transform: translateX(-80px);
  }
  to {
    transform: translateX(80px); /* adjust distance */
  }
}

/*= Buttons =*/

.button-hide{
	background-color: blue;
	color:#f9f9f9 !important;
}

.button-hide, .button-dead, .button-wounded, .button-repealed, .button-assault{
	border-radius: 5px;
	border:1px solid #0b0b0b;
	color: #f9f9f9;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 15px;
	padding:0px 10px;
	text-transform: uppercase;
	min-width:60px;
	font-weight: bold;
	min-height:35px;
}

.button-dead{
	background-color: darkred;
}

.button-wounded{
	background-color: red;
}

.button-repealed{
	background-color: black;
	border-color:#f9f9f9;
}

.button-assault{
	background-color: purple;
}

.toggle-content {
  overflow: hidden;
  transition: height 0.4s ease, opacity 0.4s ease;
  height: 0;
  opacity: 0;
}
.toggle-content.show {
  opacity: 1;
}

/*= Animations =*/

.drip {
  position: relative;
  color: red;
  font-weight: bold;
  display: inline-block;
  z-index:-999;
  }

.drip::before,
.drip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 8px;
  height: 26px;
  background: red;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: translateY(0);
  opacity: 0;
  animation: slow-drip 4s ease-in infinite;
}

.drip::before {
  left: 30%;
  animation-delay: 0s;
}

.drip::after {
  left: 60%;
  animation-delay: 2s;
}

  @keyframes slow-drip {
    0% {
      height: 0;
      opacity: 0;
      transform: translateY(0) scaleX(0.7);
    }
    10% {
      height: 14px;
      opacity: 1;
      transform: translateY(0) scaleX(1);
    }
    30% {
      transform: translateY(10px) scaleX(0.9);
    }
    50% {
      transform: translateY(25px) scaleX(0.8);
      opacity: 1;
    }
    100% {
      transform: translateY(40px) scaleX(0.5);
      opacity: 0;
    }
  }

