@charset "utf-8";
/* CSS Document */

body {
  background-color: #1a1a2e;
  color: #e0e0e0;
}

/* 2. Font style — monospace gamer feel */
body, p, h2, h3 {
  font-family: 'Courier New', Courier, monospace;
	
}

h1, h2 {
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 3. Column cards — custom border + glow */
.col {
  background-color: #16213e;
  border: 2px solid #78c2ad; /* Minty green accent */
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 0 12px rgba(120, 194, 173, 0.4);
  transition: box-shadow 0.3s ease;
}

.col:hover {
  box-shadow: 0 0 24px rgba(120, 194, 173, 0.85);
}

/* 4. Navbar custom spacing */
.navbar-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 8px;
}

/* 5. Footer styling */
footer {
  background-color: #0f3460;
  border-top: 2px solid #78c2ad;
  border-radius: 8px;
}


/* 6. Carousel caption styling */
.carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  padding: 10px 20px;
}

/* 7. Button glow on hover */
.btn-success:hover {
  box-shadow: 0 0 14px rgba(120, 194, 173, 0.8);
  transform: scale(1.05);
  transition: all 0.2s ease;
}