html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@font-face {
  font-family: "beaufortextended_heavy_italic";
  src: url("beaufort_extended_heavy_italic-webfont.woff2") format("woff2"), url("beaufort_extended_heavy_italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Open Sans", sans-serif;
  background-color: #fb7c4f;
}

* {
  box-sizing: border-box;
}

div {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

h1 {
  font-family: "beaufortextended_heavy_italic";
  font-size: 8rem;
  animation-duration: 2000ms;
  animation-delay: 100ms;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-clip-path: polygon(0% 0%, 200% 0%, 0% 200%);
          clip-path: polygon(0% 0%, 200% 0%, 0% 200%);
  animation-name: reveal;
  animation-iteration-count: infinite;
  text-transform: uppercase;
}

@keyframes reveal {
  0% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 0%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 0%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 200% 0%, 0% 200%);
            clip-path: polygon(0% 0%, 200% 0%, 0% 200%);
  }
}