:root {
  --page-bg: #cc5500;
  --text-color: rgba(255, 255, 255, .3);  
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--page-bg);
  color: var(--text-color);
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
}

h1{
   overflow-wrap: anywhere;
  hyphens: none;
  font-size: clamp(2.75rem, 40vw, 600px);
  line-height: 75%;
  text-transform: uppercase;
  margin:clamp(2.75rem, 40vw, 200px) 0;
  letter-spacing:-40%;
}
