/* Basic Reset */
* { margin: 0; padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: "Roboto Mono", monospace;
  line-height: 1.5;
  /*background-image: linear-gradient(to right, #FACB22, #F83600);*/
 /* background-size: cover;*/
  background-repeat: no-repeat;
  background-position: center center; 
 /* background-attachment: fixed;*/
  margin: 0;
  cursor: url('img/_precision_32x32.png') 20 20, auto;
}
/* Force links + buttons to use the same cursor as body */
a,
button,
input,
textarea,
select {
   text-decoration: none !important;
  cursor: inherit;
  color:black;
}
/* Change cursor to white when hovering interactive elements
a:hover,
button:hover,
input:hover,
textarea:hover,
select:hover {
  cursor: url(' _precision_32x32_white.png ') 16 16, auto;
}*/
#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;       /* send behind all content */
}
header{ font-family: "Press Start 2P", system-ui;}
#sourceText{display:none;} 
#typeOutput{text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); }
.banner-content{
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
   text-align: center;
   border: 3px solid rgb(255, 0, 200);
}

header h1 {
  margin-bottom: 0.5rem;
}
main {
  font-family: "Press Start 2P", system-ui;
  font-weight: 800; 
  text-align: center;
  border: 3px solid rgb(106, 0, 255);
}
main p{  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); /* 3px right, 3px down, 5px blur, semi-transparent black */}

main nav{
  font-size: 1rem;
  font-family: "Roboto Mono", monospace;

  
}
nav li{text-align: left;}

nav a {
  margin: 0 15px; /* spacing between links */
  text-decoration: none;
  list-style: none;
  padding: 0;
  gap: 0; /* NO spacing between boxes */

}

nav a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.horizontal-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 700px;        /* adjust length as needed */
  margin: auto;   /* centers on page */
}

.line {
   flex-grow: 1;        /* stretch between diamonds */
  height: 3px;         /* line thickness */
  background-color: black;
}

.diamond {
  display: flex;
  width: 10px;
  height: 10px;
  background-color: black;
  transform: rotate(45deg); /* turns square into diamond */
}

.top {
  align-self: center;
}

.bottom {
  align-self: center;
}

/* Flex container (grid) */
.flex-container {
  display: flex;          /* enables flex layout */
  flex-wrap: wrap;        /* wrap items to next row */
  gap: 2px;              /* spacing between items */
  justify-content: center; /* center items horizontally */
}

/* Flex items (grid cells) */
.flex-item {
  flex: 1 1 150px;        /* grow, shrink, base width */
  background-color: #000000;
  color: white;
  padding: 40px 0;
  border-radius: .0px;
  font-size: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
/* Hover effect */
.flex-item:hover {
  transform: scale(1.05);
  background-color: #f2bd0f;
}
.footer{
  font-family: "Press Start 2P", system-ui;
  text-align: center;
  color: #fff;
  margin-top: 2rem;
  padding: 1rem 0;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #0000009f;
}


