* {
    margin: 0;
    padding: 0;
  }
  
  body,html {
    height: 100%;
  }
  
  body {
      background: #2C3F56;
      font-family: system-ui, sans-serif;
  }

  .kvikk-api {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-content: center;
    height: 100%;
    gap: 1rem;
  }
  
  .logo {
    background: url(logo-dark.svg) no-repeat center;
    width: 188px;
    height: 64px;
    background-size: contain;
  }

  .status {
    display: flex;
    color: #35C287;
    font-weight: 500;
    align-items: center;
  }

  .status:before {
    width: 12px;
    height: 12px;
    margin: 0 10px 0 0;
    border-radius: 50%;
    background: #35C287;
    content: '';
    display: block;
  }