body {
  background-color: #ad0042 !important;
  color: #fff;
  font-family: "Doto", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  padding: 2rem;
  font-variation-settings: "ROND" 0;

  display: flex;
  justify-content: center;
  align-items: flex-start; 
  min-height: 100vh;
  text-align: center;
}

a {
  color: #fff;
  font-style: underline;  
}

a:visited {
  color: #fff;
  font-style: underline;  
}

.container {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem; 
}

/* Parallax Background (Flame Canvas as Background) */
#flame-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Keep the background behind the content */
  pointer-events: none; /* Allow interaction with content on top */
}

.footer-logo {
  width: 200px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 0rem;
}

/* Container for the content */
.content-container {
  position: relative;
  z-index: 1;
  color: black;
  text-align: center;
  padding: 20px;
  padding-top: 200px;
  overflow: auto;
}

.terminal-btn {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.75rem 1.5rem;
  font-family: "Doto", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.0s, border-color 0.3s;
}

.terminal-btn:hover {
  background-color: white;
  color: #c9003a;
  border: 1px solid #fff;
  padding: 0.75rem 1.5rem;
  font-family: "Doto", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}












