@charset "UTF-8";
@import url("source-sans-pro-300-family.css");

body {
  height: 100vh;
  margin: 0;
  background: linear-gradient(333deg, rgb(184, 120, 230) 0%, rgb(56, 183, 193) 50%, rgba(255, 209, 102, 1) 100%);
  background-size: 300% 300%;
  animation: gradientAnimation 8s ease infinite;
  position: relative;
  overflow: hidden;
}

/* Gradient animation */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 50%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 50%; }
  100% { background-position: 0% 50%; }
}

/* Adding a radial gradient overlay */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: overlay;
  z-index: 1;
}

input, textarea, select, button {
  border-color: #575757;
  color: #e8e7e3;
}

a {
  color: #3391ff;
}

table {
  border-color: #4c4c4c;
}

::placeholder {
  color: #b9b4ac;
}

* {
  scrollbar-color: #252a33 #1b1c21;
}

::-webkit-scrollbar {
  background-color: #1b1c21;
  color: #c4c0ba;
}

::-webkit-scrollbar-thumb {
  background-color: #252a33;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #2a323e;
}

::-webkit-scrollbar-thumb:active {
  background-color: #303d4f;
}

::-webkit-scrollbar-corner {
  background-color: #17181c;
}

.jfk-bubble {
  background-color: #000000 !important;
}

.vimvixen-hint {
  background-color: #7b5300 !important;
  border-color: #d8b013 !important;
  color: #f3e8c8 !important;
}

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;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

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;
}

/* Box Model */

*, *:before, *:after {
  box-sizing: border-box;
}

/* Type */

body, input, select, textarea {
  color: #ffffff;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  border-color: #575757;
  font-size: 14pt;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1680px) {
  body, input, select, textarea {
    font-size: 11pt;
  }
}

@media screen and (max-width: 480px) {
  body, input, select, textarea {
    font-size: 10pt;
    line-height: 1.75;
  }
}

a {
  transition: color 0.2s ease, border-color 0.2s ease;
  color: #3391ff;
  text-decoration: none;
}

a:before {
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  color: #ff7496;
  text-decoration: underline;
}

strong, b {
  color: #313f47;
}

em, i {
  font-style: italic;
}

p {
  margin: 0 0 1.5em 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #e8e7e3;
  line-height: 1.5;
  margin: 0 0 0.75em 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 1.85em;
  letter-spacing: 0.15em;
  margin: 0 0 0.525em 0;
}

h1.name {
  text-transform: uppercase;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.25em;
}

h4 {
  font-size: 1em;
}

h5, li {
  font-size: 0.9em;
}

h6, .biography {
  font-size: 0.9em;
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.65em;
  }
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

hr {
  border: 0;
  border-bottom: solid 1px #575757;
  margin: 1.5em 0;
}

/* Icon */

.icon {
  text-decoration: none;
  position: relative;
  border-bottom: none;
}

.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

.icon>.label {
  display: none;
}

/* List */

ol {
  list-style: decimal;
  margin: 0 0 1.5em 0;
  padding-left: 1.25em;
}

ol li {
  padding-left: 0.25em;
}

ul {
  list-style: none;
  margin: 0 0 1.125em 0;
}

ul li {
  padding-bottom: 0.375em;
}

ul.alt {
  padding-left: 0;
}

ul.alt li {
  border-top: solid 1px #575757;
  padding: 0.5em 0;
}

ul.alt li:first-child {
  border-top: 0;
  padding-top: 0;
}

ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.icons li {
  display: inline-block;
  padding: 0.675em 0.5em;
}

ul.icons li a {
  text-decoration: none;
  position: relative;
  display: block;
  width: 3.75em;
  height: 3.75em;
  border-radius: 100%;
  border: solid 1px #575757;
  line-height: 3.75em;
  overflow: hidden;
  text-align: center;
  text-indent: 3.75em;
  white-space: nowrap;
}

ul.icons li a:before {
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

ul.icons li a:before {
  color: #ffffff;
  text-shadow: 1.25px 0px 0px #575757, -1.25px 0px 0px #575757, 0px 1.25px 0px #575757, 0px -1.25px 0px #575757;
}

ul.icons li a:hover:before {
  text-shadow: 1.25px 0px 0px #ff7496, -1.25px 0px 0px #ff7496, 0px 1.25px 0px #ff7496, 0px -1.25px 0px #ff7496;
}

ul.icons li a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  font-size: 1.85rem;
  line-height: inherit;
  text-align: center;
  text-indent: 0;
}

ul.icons li a:hover {
  border-color: #ff7496;
}

@media screen and (max-width: 480px) {
  ul.icons li a:before {
    font-size: 1.5rem;
  }
}

ul.actions {
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.actions li {
  display: inline-block;
  padding: 0 0.75em 0 0;
  vertical-align: middle;
}

ul.actions li:last-child {
  padding-right: 0;
}

dl {
  margin: 0 0 1.5em 0;
}

dl dt {
  display: block;
  margin: 0 0 0.75em 0;
}

dl dd {
  margin-left: 1.5em;
}

/* Main */

#main {
  position: relative;
  max-width: 60%;
  min-width: 27em;
  padding: 4.5em 3em 3em 3em;
  background: #17181c;
  border-radius: 4px;
  cursor: default;
  opacity: 0.95;
  text-align: center;
  transform-origin: 50% 50%;
  transform: rotateX(0deg);
  transition: opacity 1s ease, transform 1s ease;
}

#main .avatar {
  position: relative;
  display: block;
  margin-bottom: 1.5em;
}

#main .avatar img {
  display: block;
  margin: 0 auto;
  border-radius: 100%;
  box-shadow: 0 0 0 1.5em #17181c;
}

#main .avatar:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -3em;
  width: calc(100% + 6em);
  height: 1px;
  z-index: -1;
  background: #17181c;
}

#main .name {
  font-weight: bold;
}

#main .location {
  display: block;
  margin-top: -1.5em;
  margin-bottom: 0.75em;
}

#main .biography {
  display: block;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 480px) {
  #main {
    min-width: 0;
    width: 100%;
    padding: 4em 2em 2.5em 2em;
  }
  #main .avatar:before {
    left: -2em;
    width: calc(100% + 4em);
  }
}

body.is-loading #main {
  opacity: 0;
  transform: rotateX(15deg);
}

/* Footer */

#footer {
  align-self: flex-end;
  width: 100%;
  padding: 1.5em 0 0 0;
  color: rgba(255, 255, 255, 0.75);
  cursor: default;
  text-align: center;
}

/* Wrapper */

#wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  perspective: 1000px;
  position: relative;
  min-height: 100%;
  z-index: 1;
}

#wrapper>* {
  z-index: 1;
}

#wrapper:before {
  content: '';
  display: flex;
}

@media screen and (max-width: 540px), screen and (max-height: 770px) {
  body {
    height: auto;
  }
  #wrapper {
    padding: 1em;
  }
}

body.is-ie #wrapper {
  height: 100%;
}