body {
  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;
}

button,
a.white-button, 
a.black-button,
a.blue-button {
  display: inline-block;
  font-family: "Helvetica";
  font-weight: 600;
  letter-spacing: -0.05em;
  border-radius: 0;
  text-decoration: none;
  transition: box-shadow 0.5s ease, text-decoration 0.5s ease;
}

.white-button {
  color: #e5e5e5;
  background: blue;
  border: 4px solid #e5e5e5;
  box-shadow: 13px 13px 0 #e5e5e5;
  width: 100%;
  max-width: 200px;
  padding: 12px 30px;
  margin: 12px auto;
  font-size: 24px;
}

.white-button:hover {
  box-shadow: 2px 2px 0 #e5e5e5;
  text-decoration: underline;
}

.black-button {
  color: #0c0c0c);
  background: #e5e5e5;
  border: 2px solid #0c0c0c;
  box-shadow: 9px 9px 0 #0c0c0c;
  width: 100%;
  max-width: 320px;
  padding: 12px 30px;
  margin: 12px auto;
  font-size: 28px;
}

.black-button:hover {
  box-shadow: 2px 2px 0 #0c0c0c;
  text-decoration: underline;
}

.blue-button {
  color: blue;
  background: #e5e5e5;
  border: 2px solid blue;
  box-shadow: 9px 9px 0 blue;
  width: 100%;
  max-width: 320px;
  padding: 12px 30px;
  margin: 12px auto;
  font-size: 28px;
}

.blue-button:hover {
  box-shadow: 2px 2px 0 blue;
  text-decoration: underline;
}





