@charset "utf-8";

/******************************/
/* NOTE: Layout
/******************************/

html {
  height: 100%;
  margin: 0;
	padding: 0;
}
body {
  box-sizing: border-box;
  min-height: 100vh;
	position: relative;
	width: 100%;
	height: 100%;
	font: 14px/19px helvetica, arial, sans;
	color: #FFFFFF;
	background: #070b10 url(../images/frbg.jpg?c=1) 50% 50% no-repeat;
  background-size: cover;
	margin: 0;
	padding: 4em;
}
a {
  font-size: 2.2em;
  font-weight: 400;
  color: #eee;
  text-decoration: none;
  transition: background-image 500ms ease;
  background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
  display: inline-block;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a:hover {
    background-image: linear-gradient(43deg, #fff 0%, #fff 100%);
}
a img {
    width: auto;
    height: 1em;
    margin-right: 0.3em;
    position: relative;
    top: -0.1em;
}