/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
  Site CSS
*/

html {
  height: 100%;
}

body {
  height: 100%;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  background-color: #91defa;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: -moz-linear-gradient(top, #021732 0%, #004387 37%, #0191da 75%, #68d4fb 95%, #91defa 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #021732 0%,#004387 37%,#0191da 75%,#68d4fb 95%,#91defa 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #021732 0%,#004387 37%,#0191da 75%,#68d4fb 95%,#91defa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background-color: #91defa; /* Old browsers */
}

a {
  color: rgba(0, 0, 0, 0.55);
  text-decoration: underline;
  font-size: 12px;
  transition: color 0.1s;
  font-weight: bold;
}

a:hover {
  color: #87c6ff;
  color: rgba(0, 0, 0, 0.85);
}

.container {
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.name {
  font-size: 40px;
  font-weight: bolder;
}

.description {
  color: #fbb545;
  font-size: 14px;
  padding-top: 6px;
  font-weight: bold;
}

.social {
  margin-top: 40px;
}

.socialButton {
  display: inline-block;
  margin: 0 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.22);
  border: 5px solid transparent;
  background-blend-mode: multiply;
}

.socialButton:hover {
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 1);
}

.socialButton:active {
  transform: scale(0.9);
}

.socialButton svg {
  width: 26px;
  height: 26px;
  fill: rgba(255, 255, 255, 0.8);
  margin: 6px;
  transition: fill 0.2s;
}

.socialButton:hover svg {
  fill: #fff;
}

.title {
  font-weight: bolder;
  font-size: 16px;
  margin-top: 50px;
  margin-bottom: 10px;
}

.tools {
  color: rgba(0, 0, 0, 0.15);
}

.star {
  background: #fff;
  border-radius: 50%;
  width: 2px;
  height: 2px;
  box-shadow: 0px 0px 30px 1px rgba(255, 255, 255, 0.45);
  position: absolute;
  top: 200px;
  left: 200px;
  transition: opacity 1s;
}

.fadeout {
  opacity: 0 !important;
}