* {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    height: 100%;
    font-family: "Times New Roman", Times, serif;

  }
  
  .wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .logo {
    max-width: 15vw;   /* responsive */
    height: auto;
  }
  
  .meta {
    margin-top: 14px;
    font-size: 14px;
  }
  
  .articles {
    margin-top: 60px;
    font-size: 12px;
  }
  