/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body style */
  body {
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
  }
  
  /* Center the content */
  .container {
    text-align: center;
  }
  
  /* Styling for the KENZ text */
  h1 {
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    font-size: 5vw; /* Responsive font size */
    color: #333;
  }
  
  /* Make sure it's responsive for smaller screens */
  @media (max-width: 600px) {
    h1 {
      font-size: 8vw;
    }
  }
  