* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
  }
  
  body {
    font-family: 'JetBrainsMono-Medium', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg,#04619f 0,#000000 100%)!important;
  }
  
  header {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
  }
  
  .logo {
    max-width: 80%;
    image-rendering: -moz-crisp-edges;
  }
  
  
