/*! HTML5 Boilerplate v7.1.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * Fonts
 */

/* Ubuntu */
@font-face {
  font-family: 'Landing';
  font-style: normal;
  font-weight: 400;
  src: url('/landing.ttf') format('truetype');
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
:root {
  font-size: calc(1vw + 1vh + .5vmin);
}

body, html {
  height: 100%;
  text-align: "center";
}

html {
  line-height: 1;
  font-family: 'Landing';
  scroll-behavior: smooth;
  background-color: black;
  color: #FE960D;
  text-shadow:  0 0 1px #FE960D;
  transition: 1s;
  animation-name: fancybgcolors;
  animation-duration: 1s;
  animation-iteration-count: 1;
}


@keyframes fancybgcolors {
  0%    { background-color: #FE960D; color: #FE960D; text-shadow: 0 0 5em red;}
  50% {background-color: #FE960D;}
}

My Stuff
*/
body {
  height: 100%;
  margin: 0;
  font-size: 1em;
}

body:focus {
  height: 100%;
  margin: 0;
  font-size: 1em;
}



.placeholder {
  height: 10vh;
  }

/* media queries */
@media screen and (min-width: 1300px) {

  body {
    font-size: 2em;
  }

  header img {
    width: 50vw;
  }
}

@media screen and (min-width: 992px) {

  body {
    font-size: 1.5em;
  }

  header img {
  width: 60vh;
}
}

@media screen and (max-width: 600px) {
  body {
    font-size: 1.5em;
  }
  header img {
  width: 30vh;
}


