* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
    width: 100%;
    font-family: sans-serif;
    background: white;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 1rem;
  }
  
  h1 {
    font-size: clamp(2rem, 10vw, 6rem);
    font-weight: bold;
    color: #000;
  }