/* Intentionally bad styling with even more randomization */
body {
    background-color: #ff00ff; /* Bright pink background */
    font-family: 'Comic Sans MS', cursive;
    text-align: center;
}

h1 {
    color: #00ff00; /* Bright green header text */
    font-size: calc(2rem + 2vw); /* Randomize font size based on viewport width */
    margin: calc(1rem + 1vw); /* Randomize margin based on viewport width */
    transform: rotate(calc(-10deg + 20deg * Math.random())); /* Random rotation */
}

/* Add more chaotic styling here */
/* For example, randomize colors, margins, padding, etc. */
