body {
  background-color: #b0b7b2;
  color: #FFFFFF;
  font-family: "VT323", monospace;
  font-size: 24px;
  margin: 0;
  padding: 0;
}

hr {
    border: none; /* Remove default border */
    height: 2px; /* Set the thickness of the line */
    background-color: #000; /* Set the color of the line */
}

/* BIOS NAVIGATION BAR */

.bios-navbar {
  padding: 15px;
  margin: 0;
  margin-bottom: 0px;
  width: 100%;
  background-color: #0200AD;
  text-align: center;
}

.navbar {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.navbar li {
  display: inline-block;
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  text-transform: uppercase;
  color: #B6B7AF;  /* default grey text */
  padding: 10px;
}

.navbar a.selectednav {
  background-color: #B6B7AF;
  color: #000080;  /* dark blue text */
  padding: 15px;
}

.navbar a:hover:not(.selectednav) {
  background-color: #B6B7AF;
  color: #0000AA;
}

.navbar a:hover::after {
  content: "_";
  animation: blink 1s steps(1) infinite;
}

.logo-blink {
 content: "☰";
 animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* BIOS Content Sections */

.bios-section {
 display: flex;
 justify-content: space-between;
 background-color: #B6B7AF; /* Gray Bios Feel */
 padding: 5px;
 margin: 0;
 font-family: "VT323", monospace;
 color: black; /* Terminal Yellow */
 width: 100%;
}

.bios-left {
 flex: 2;
 padding-right: 20px;
 border: 2px solid #000088;
 padding: 10px;
 width: 50%;
}

.bios-right {
 flex: 1;
 border: 2px solid #000088;
 padding-left: 20px;
}

.bios-right ul {
 list-style: none;
 padding: 0;
}

.bios-right li {
 margin: 5px 0; 
}

.bios-right a {
  color: #000088;
  text-decoration: none;
}

/* BIOS TITLE BAR */

.bios-title-bar {
  position: relative;
  width: 100%;
  height: 15px; /* enough space for text */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 15px;
}

/* The horizontal stripe behind text */
.blocks-row {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* fill the title bar height */
  display: flex;
  z-index: 0;
}

.blocks-row .block {
  flex: 1; /* equal width slices */
}

/* BIOS-inspired blue-black segments */
.block1 { background-color: #0101A8; }
.block2 { background-color: #0002F4; }
.block3 { background-color: #0101F9; }
.block4 { background-color: #000096; }
.block5 { background-color: #00024D; }
.block6 { background-color: #000000; }
.block7 { background-color: #000000; }
.block8 { background-color: #010052; }

/* Centered text sits on top */
.title-content {
  position: relative;
  z-index: 1; /* above the blocks */
  text-align: center;
  width: 100%;
}

.title-content h1.title-head {
  font-family: "Orbitron", monospace;
  font-size: 24px;
  margin: 0;
  color: #FFFFFF;
}

.title-content h6.subtitle-head {
  font-family: "VT323", monospace;
  font-size: 16px;
  margin: 4px 0 0;
  color: #B6B7AF;
}

.subtitle-head {
  text-align: center;
  margin: 0 auto;
}

/* Button Style */
button {
  background-color: #0101A8;
  color: #fff;
  padding: 1em;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 1);
}

/* Captcha Dialogue */
/*  style="max-width:420px;margin:3rem auto;padding:1rem;border:1px solid #fff;border-radius:8px;background:#0200AD;" */
.modal-inner {
  max-width: 512px;
  margin: 3rem auto;
  padding: 1rem;
  border: 1px solid #000;
  border-radius: 0px;
  background: #0200AD;
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 1);
}



