html {
  font-size: 1.5em;
  height: 100%;
}
@media (min-width: 568px)  { html { font-size: 1.5em; } }
@media (min-width: 768px)  { html { font-size: 32pt;  } }
@media (min-width: 992px)  { html { font-size: 36pt;  } }
@media (min-width: 1366px) { html { font-size: 48pt;  } }
@media (min-width: 1900px) { html { font-size: 64pt;  } }

body {

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;

  color: red;
  font-family: "Univers", sans-serif;
  font-size: 1rem;
  font-stretch: condensed;
  -webkit-font-variant-ligatures: common-ligatures;
  font-variant-ligatures: common-ligatures;
  font-weight: 300;
  line-height: 1.222;

  margin: auto 5vw;
  max-width: 15em;
  min-height: 100%;

}

@media (min-width: 410px)  { body { margin: auto; } }


a, .or, .lt, .hr {
  color: #1d1d1b;

  position: relative;
  font-family: "ORO", "Univers", sans-serif;
  font-weight: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

img {
  display: block;
  width: 90%;
  height: auto;
}

h1.or {
  font-size: 26vw;
  line-height: 1;
  margin-top: 5vw;
  margin-bottom: 0;
  width: 100%;
}

p {
  margin-top: 5vw;
  margin-bottom: 5vw;
}

.lt::before, .hn::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  left: 0;
  height: .12em;
  mix-blend-mode: multiply;
  transition: transform .3s ease;
}

.lt::before {
  top: .25em;
  right: .2em;
  background-color: cyan;
  transform-origin: right center;
}

.hn::before {
  bottom: .3em;
  right: .33em;
  background-color: #39a84a;
  transform-origin: left center;
}


.lt:hover::before,
.hn:hover::before {
  transform: scaleY(1.4) scaleX(1.01);
}
