body, html {
    height: 100%;
    font-family: 'JetBrains Mono', monospace;
    color: white;
    /* background-color: #7332e3; */
    background-color: #7943bf;
}

h1{
    font-size: 24px;
}

.button {
  background-color: yellow; /* Your primary color */
  color: black; /* Your secondary color */
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.grecaptcha-badge {
  visibility: hidden;
}
.even-smaller{
  font-size: 8px;
}
.yt{
    background-color: #ff0000; /* Your primary color */
    color: white; /* Your secondary color */
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    
}
.heading{
    margin-top: 5px;
}
.button:hover {
  background-color: #fcd12a; /* A slightly different shade for hover */
  font-family: 'JetBrains Mono', monospace;
}


a { color: salmon; 
  text-decoration: underline;

}
a:hover { color: limegreen; }
.container {
  display: flex;
}
.alt-bg{
  background-color: #f5f5f5;
}
.content-area {
  padding: 20px;
  max-width: 500px; 
  margin: auto;
}
.content-area-2{
  padding: 20px;
  max-width: 500px;
  margin: auto;
}
.after-hero{
  display: flex;
  align-items: center;
  margin: 20px; 
  width: 90%;
}
/* The hero image */
.hero-image {
  background-color:#3c215f;
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("defensemap-large.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  /* Instead of height: 100%; use a fixed height or viewport-based height */
  height: 100vh; 
  /* or height: 100vh; if you want it to fill the screen */

  position: relative; /* so we can position canvas absolutely inside */
}

/* Our Three.js canvas that will overlay the hero background */
#three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Adjust if you want text over or under the 3D object */
}

.form > form > div{
  margin-top: -40px;
}
.fade-in {
  opacity: 0; /* Start from invisible */
  transition: opacity 3s ease-in-out; /* Duration of 2 seconds with a smooth transition */
}

/* Optional: initially hide element to prevent flash of content */
.hidden {
  display: none;
}

.center{
  text-align: center;
}

/* Place text in the middle of the image */
.text-overlay {
  background-color: #555;
  opacity: 50%;
}
.hero-text {
  text-align: left;
  position: absolute;
  width: 97%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding-right: 50px;
  padding-left: 50px;
  max-width: 600px;
}
.creds{
  font-size: 10px;
  text-align: right;
  margin-top: 10px;
}

.byline{
  position: absolute;
  bottom: 15px;
  left: 15 px;
  width: 90%; 
  font-size: 10px;
}
.headerspacer{
  width: 20%;
}
.subtitle{
  font-size:14px;
}
.smaller{
  font-size: 10px;
}

#one{
  display:flex;
  justify-content: left;
}
#three{
  width: 50%;
}
