:root {
    --heading-size: clamp(4rem, 10vw, 8rem);
    --subtext-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    body {
    margin: 0;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
    box-sizing: border-box;
    text-align: center;
    }
    
    h1 {
    font-size: var(--heading-size);
    font-weight: 700;
    margin: 0;
    }
    
    span {
    margin-top: 1rem;
    font-size: var(--subtext-size);
    font-weight: 400;
    max-width: 100%;
    word-break: break-word;
    }