/* 2020MAR24 */
/* 'css3prefix mixin' @see https://github.com/matthieua/sass-css3-mixins/blob/master/css3-mixins.scss */
/* 'keyframes' mixin @see http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/*/
/* 'animation' mixin from https://developer.mozilla.org/en-US/docs/Web/CSS/animation */
/* legacy-direction function @see http://www.sitepoint.com/building-linear-gradient-mixin-sass/ */
/* 'transition' mixin @see http://codepen.io/sawmac/pen/cayhK */
/* 'gradientanimation' mixin @see https://medium.com/@dave_lunny/animating-css-gradients-using-only-css-d2fd7671e759#.jlbdgs4jl */
/* 'animation' mixin @see http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/ */
/* line 4, ./zoid6.scss */
body {
  background-color: gray;
  /*  font-family: Arial, Helvetica, sans-serif; */
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.0em;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  /* https://naldzgraphics.net/free-seamless-metal-textures/ */
  /* https://www.wildtextures.com/free-textures/aged-piece-of-exotic-wood/ */
  background-image: url(https://zoidtechnologies.com/static/skin/art/free-seamless-metal-textures.jpg);
  background-repeat: repeat;
  background-attachment: fixed;
}
/* line 31, ./zoid6.scss */
body main {
  display: flex;
}

/* line 37, ./zoid6.scss */
.strike {
  text-decoration: line-through;
}

/* line 41, ./zoid6.scss */
.scene {
  -webkit-animation-duration: 1s;
  /* 0.25s; */
  animation-duration: 1s;
  /* 0.25s; */
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  /** Reverse "exit" animations */
}
/* line 57, ./zoid6.scss */
.scene.is-exiting .element {
  animation-direction: alternate-reverse;
}

/* line 63, ./zoid6.scss */
.noflex {
  flex: 0;
}

/* line 67, ./zoid6.scss */
.nomargin {
  margin: 0;
}

/* line 71, ./zoid6.scss */
.nopadding {
  padding: 0;
}
