@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap");

body {
  padding: 0 10%;
  /*background-color: #1a1b1e; */
  background-color: #000000;
  color: #FFF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5em;
  white-space: nowrap;
}

.video-background {
  position: absolute; /* or absolute */
  top: 30vh; /* Adjust this value based on the desired position */
  left: 18vw; /* Adjust this value based on the desired position */

  overflow: hidden;
  z-index: -1; /* Ensure it stays behind other content */
}

.heading {
  position: fixed; /* or absolute */
  top: 30%; /* Adjust this value based on the desired position */
  left: 10vw; /* Adjust this value based on the desired position */
  color: #FFF;
  font-family: 'JetBrains mono', monospace;
  font-size: 0.5em;
}

.logo-container {
  position: fixed;
  top: 20%; /* Adjust this value to move the logo up or down */
  left: 10vw; /* Adjust this value to move the logo left or right */
  z-index: 1000; /* This ensures the logo stays on top of other elements */
  filter: invert(1);
}


.logo-openai {
  position: fixed;
  top: 90%; /* Adjust this value to move the logo up or down */
  left: 10vw; /* Adjust this value to move the logo left or right */
  z-index: 1000; /* This ensures the logo stays on top of other elements */
  filter: grayscale(60%);
}

.logo-anthropic {
  position: fixed;
  top: 90%; /* Adjust this value to move the logo up or down */
  left: 15vw; /* Adjust this value to move the logo left or right */
  z-index: 1000; /* This ensures the logo stays on top of other elements */
  filter: grayscale(60%);
}


.logo-gemini {
  position: fixed;
  top: 90%; /* Adjust this value to move the logo up or down */
  left: 20vw; /* Adjust this value to move the logo left or right */
  z-index: 1000; /* This ensures the logo stays on top of other elements */
  filter: grayscale(60%);
}


.container {
  font-size: 1.5em;
  position: fixed;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.container1 {
  font-size: 1.5em;
  position: fixed;
  top: 55%;
  left: 2%;
  transform: translateY(-50%);
}

.container .blinking-cursor {
  animation: blink 0.6s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}


.blinking-cursor {
  user-select: none;
  animation: blink 1s steps(2, start) infinite;
}

footer {
  font-size: 0.3em;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  color: white;
  font-family: 'JetBrains Mono Thin', monospace;
}


.login-button {
  font-size: 0.3em;
  position: fixed;
  top: 20px;
  right: 20px; /* Adjusted */
  background-color: #167dff;
  color: white;
  padding: 15px 37px;
  border-radius: 20px;
  text-decoration: none;
  font-family: 'JetBrains Mono ExtraLight', monospace;
}

.contact-button {
  font-size: 0.3em;
  position: fixed;
  top: 20px;
  right: 150px;
  background-color: #167dff;
  color: white;
  padding: 15px 30px;
  border-radius: 20px;
  text-decoration: none;
  font-family: 'JetBrains Mono ExtraLight', monospace;
}

.trading-button {
  font-size: 0.3em;
  position: fixed;
  top: 20px;
  right: 305px; /* Adjusted */
  background-color: #167dff;
  color: white;
  padding: 15px 37px;
  border-radius: 20px;
  text-decoration: none;
  font-family: 'JetBrains Mono ExtraLight', monospace;
}

.tradingview-widget-container1{
  font-size: 1.5em;
  position: fixed;
  top: 53%;
  left: 105%;
  transform: translateY(-50%);
}


.content {
  bottom: 1%;  /* 60px is the footer height and 500px is chatbot height */
}

flowise-fullchatbot {
  position: absolute;
  padding-bottom: 5%;
  bottom: 100px;  /* height of the footer */
  left: 50%;
  transform: translateX(-50%);  /* to center the chatbot horizontally */
  z-index: 999;  /* to ensure chatbot sits above other content */
}


