/*  WEB FONTS  */
@font-face {
    font-family: 'metaphorboldregular';
    src: url('fonts/metaphorbold-webfont.woff2') format('woff2'),
         url('fonts/metaphorbold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'scalterserifCnslanted';
    src: url('fonts/scalter-serifcondslant-webfont.woff2') format('woff2'),
         url('fonts/scalter-serifcondslant-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FjallaOne-Regular';
    src: url('fonts/FjallaOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*  BODY STYLE  */
body {
  background: linear-gradient(90deg, rgba(121,37,9,1) 0%, rgba(236,184,226,1) 100%);
}

h1 {
  font-family: 'scalterserifCnslanted';
  font-size: 20em;
  text-align: center;
}

h2 {
  font-size: 15em;
}

h3 {
  font-size: 10em;
}

h4 {
  font-size: 5em;
}

h5 {
  font-size: 3em;
}

h6 {
  font-size: 2em;
}

p {
  font-size: 1em;
}


/*  CIRCLE TEXT TEST 01 - https://codepen.io/Shaikat/pen/PapGpr */

#container { margin: 0%; }

#circle { position: relative; width: 100%; padding-bottom: 100%; overflow: hidden; }

#circle text { font-family: 'Helvetica Neue', Arial; font-size: 16px; font-weight: bold; }

#circle svg { position: absolute; left: 0; top: 0; width: 100%; height: 540px;

  -webkit-animation-name: rotate;
     -moz-animation-name: rotate;
      -ms-animation-name: rotate;
       -o-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 5s;
     -moz-animation-duration: 5s;
      -ms-animation-duration: 5s;
       -o-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
      -ms-animation-iteration-count: infinite;
       -o-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
      -ms-animation-timing-function: linear;
       -o-animation-timing-function: linear;
          animation-timing-function: linear;

}

@-webkit-keyframes rotate {
    from { -webkit-transform: rotate(360deg); }
    to { -webkit-transform: rotate(0); }
}
@-moz-keyframes rotate {
    from { -moz-transform: rotate(360deg); }
    to { -moz-transform: rotate(0); }
}
@-ms-keyframes rotate {
    from { -ms-transform: rotate(360deg); }
    to { -ms-transform: rotate(0); }
}
@-o-keyframes rotate {
    from { -o-transform: rotate(360deg); }
    to { -o-transform: rotate(0); }
}
@keyframes rotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0); }
}


/*  CIRCLE TEXT TEST 02 - https://codemyui.com/spinning-ring-text-pure-css

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}
ul {
  margin: 0;
  list-style: none;
  font-size: 4vw;
  transform-style: preserve-3d;
  animation: three-dimensions-circle 30s linear infinite;
}
li {
  position: absolute;
  top: 50%;
  left: 50%;
}
@for $i from 1 through 12 {
  li:nth-child(#{$i}) {
    transform: translate(-50%, -50%) rotate(#{$i * 30 - 30}deg) translateY(-260px) rotateX(90deg);
  }
}
@keyframes three-dimensions-circle {
  0% {
    transform: rotateX(-100deg) rotate(0);
  }
  100% {
    transform: rotateX(-100deg) rotate(-360deg);
  }
}
*/
