/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    background-color: #0c0c0c;
    height: 100%;
    font-family: Aeonik Pro, Roboto, Helvetica Neue, Arial, sans-serif;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    background-color: #0c0c0c;
    text-transform: uppercase;
  }
  
  .logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  h1 {
    padding: 2rem 0 1rem;
    color: #f42a03;
    font-size: 1rem;
  }

  h2 {
    color: #fff;
    font-size: .9rem;
  }