@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');

body {
    background: linear-gradient(-45deg, #171717, #272626, #242626, #0d0f0e);
    background-size: 400% 400%;
    -webkit-animation: gradient 15s ease infinite;
    animation: gradient 15s ease infinite;
    height: 100vh;
}

@-webkit-keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background: #282e34;
}

::-webkit-scrollbar-thumb {
    background: #ded7d7;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a5a5;
}

.introtxt {
    text-align: center;
    color: aliceblue;
    font-family: 'JetBrains Mono', monospace;
    font-size: 50px;
}
.headertxt{
    text-align: center;
    color: aliceblue;
    font-family: 'JetBrains Mono', monospace;
    font-size: 80px;
}
footer {
    padding: 10px 20px;
    text-align: center;
    background-color: #3c4247;
  }

  .overview{
    text-align: center;
    color: aliceblue;
    font-family: 'JetBrains Mono', monospace;
    font-size: 30px
  }
  a{
    text-align: center;
    color: aliceblue;
    font-family: 'JetBrains Mono', monospace;
    font-size: 30px
  }
  .howitworks{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  table, th, td {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    color: aliceblue;
    border: 2px solid rgb(255, 255, 255);
  }
.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   color: white;
   text-align: center;
}
a:hover{
    color: #127af1;
}