  *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      min-height: 100svh;
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      background-color: #000;
      background-image: 
      url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E"), radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), #1a1a1a, #000 40%);
      color: #5a5a5a;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      font-weight: 300;
      font-size: x-large;
      letter-spacing: 0.1em;
    }
    
    main {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;


    }
    
    h1 {
        color: #ddd8cf;
      font-family: "Bungee Hairline", sans-serif;
      font-size: clamp(3rem, 10vw, 7rem);
      font-weight: 400;
      text-transform: uppercase;
      animation-delay: 1s;
    animation: open 4s ease-out forwards;
    text-shadow: 1px 1px 0 #16113a, -1px -1px 0 #360909
    }



    footer {
     background-color: black;
      padding: 2rem;
      border-top: 1px solid #2a2a2a;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 2.5rem;
      justify-content: center;
      text-align: center;
    }

    footer p {
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    @keyframes open {
        0%{
            letter-spacing: -0.1em;
        }
        100%{
            letter-spacing: 0.15em;
        }
    }



