html, body {
    margin: 0;
    padding: 0;
    font-family: 'Consolas', sans-serif;
    font-size: 14px;
    color: white;
    background-color: black;
    overflow: hidden;
  }
  
  *::-webkit-scrollbar {
    display: none;
  }
  
  .container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .description {
    font-size: 1.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #7b8290;
    margin-top: -15px;
  }
  
  .header {
    width: 100%;
    height: 50px;
    background-color: #111;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .content {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
  }
  
  .heading {
    margin: auto;
    width: fit-content;
  }
  
  .heading h1 {
    font-size: 2em;
    margin: 0;
  }
  
  .heading p {
    font-size: 1em;
    margin: 0;
  }
  
  .hero {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }
  
  .cursor {
    margin-left: 1px;
    padding-right: calc(0.5em - 1px);
    opacity: 0;
    border-left: #777 solid 1px;
    animation: blink 1s infinite;
  }
  
  .hero h1, .hero p {
    padding: 0;
  }
  
  .hero h1 {
    font-size: 2em;
    margin-left: -1em;
  }
  
  .footer {
    width: 100%;
    height: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .copyright p {
    display: inline-block;
    font-size: 12px;
    color: #777;
  }
  
  .buttons {
    margin-top: 3em;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .buttons a {
    margin-left: 1em;
    margin-right: 1em;
    position: relative;
    display: block;
    text-decoration: none;
    font-size: 1.3em;;
    color: white;
    padding: 4px 0;
    transition: 0.5s;
  }
  
  .buttons a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    top: 95%;
    left: 0;
    background: white;
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: right;
  }
  
  .buttons a:hover {
    color: #95a5a6;
  }
  
  .buttons a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  @keyframes blink {
    0% { opacity: 0; }
    49% { opacity: 0; }
    50% { opacity: 1; }
    99% { opacity: 1; }
    100% { opacity: 0; }
  }