<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Basic reset to remove default browser margins/padding */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevents scrollbars if text slightly overflows */
    background-color: white; /* Set background color */
}

/* Container for the text elements */
.text-container {
    width: 100%;
    height: 100%;
    display: flex; /* Use flexbox for easy vertical centering if needed later */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Vertically center the block of text */
}

/* Style for each line of text */
.line {
    font-family: Helvetica, Arial, sans-serif; /* Use Helvetica, fallback to Arial/sans-serif */
    font-weight: bold; /* Make text bold for impact */
    color: black; /* Set text color */
    padding-left: 0; /* Ensure text starts exactly at the left edge */
    margin: 0; /* Remove any default margins */

    /* --- KEY PART: Scaling Font Size --- */
    /* vw = viewport width unit. 1vw = 1% of viewport width. */
    /* Adjust this value to make text larger or smaller relative to window width */
    /* This value makes "Disrupt." roughly span the width on typical screens. */
    font-size: 25vw;

    /* Adjust line height to bring lines closer together */
    /* A value less than 1 tightens the spacing */
    line-height: 0.8;

    /* Ensure text doesn't wrap */
    white-space: nowrap;
}

/* Specific adjustments if needed (though font-size handles most) */
#we {
    /* Optional: Slightly smaller font size for "We" if desired */
    /* font-size: 23vw; */
}

#disrupt {
    /* Ensures it behaves as intended */
}
</pre></body></html>