* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --footer-h: 56px;
  }
  
  html,
  body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Barlow Condensed', sans-serif;
    background-color: #0a0a0a;
    color: #f2f2f2;
    overflow: hidden;
  }
  