/* You can add global styles to this file, and also import other style files */

/* =========================
Colors
$bg-color: #020024;
$lightgray: #c5c6c7;
$accent-blue: #66fcf1;
$dark-blue: #45a29e;
========================= */

* {
  font-family: 'Inconsolata', monospace;
}

.main-container {
  background-color: #020024;
  max-width: 100%;
  overflow-x: hidden;
}

.content-container {
  z-index: 1;
  position: relative;
}

body { 
  color: #e0e0e0; /* Light gray text */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #66fcf1; /* Green headers */
}

a {
  color: #66fcf1;
}

a:hover {
  color: #45a29e; /* Bright green on hover */
}

.btn {
  background-color: #66fcf1; /* Muted green button */
  color: black; /* Dark text */
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover {
  background-color: #45a29e; /* Bright green on hover */
  color: white; /* Dark text */
}

pre,
code {
  background-color: #1e1e1e; /* Slightly lighter dark background */
  color: #00ff00; /* Green text */
  padding: 10px;
  border-radius: 5px;
  overflow-x: auto;
}

/* Geometric figures */
.square {
  width: 3vw;
  height: 100vh;
  background-color: #45a29e;
  z-index: -1;
  position: absolute;
}

.circle {
  width: 500px;
  height: 500px;
  background-color: #45a29d6c;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 200px solid transparent;
  border-right: 300px solid transparent;
  border-bottom: 300px solid gray;
  position: absolute;
  z-index: -1;
}

.rectangle {
  width: 100vw;
  height: 10vh;
  background-color: #4CAF50;
  z-index: -1;
  position: absolute;
}

/* Accordion */
/* Custom CSS to disable background and text color change */
.accordion-button:not(.collapsed) {
  background-color: #66fcf1;
}