html,body {
    color: #d18cff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    height: 100%;
	margin: 0;
    background: radial-gradient(ellipse at bottom, #40175c 0%, #090a0f 100%);
}
body{
	overflow: hidden;
	overflow-y: auto;
}
::-webkit-scrollbar {
    width: 10px;
  }
::-webkit-scrollbar-thumb {
    background: #b723d5;
  }
::-webkit-scrollbar-thumb:hover {
    background: #510b5f;
  }
.star {
  position: absolute;
  animation-iteration-count: infinite;
}
.shooting {
  position: absolute;
  top: -700;
  left: 20%;
  width: 300px;
  height: 5px;
  display: inline-block;
  transform: rotateZ(-30deg);
}
.shooting .core {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffff84;
  box-shadow: 0px 0px 3px 1px rgba(255, 245, 131, 0.5),
    0px 0px 10px 5px rgba(255, 245, 131, 0.2);
  animation: 6s linear infinite core;
}
.shooting .trail {
  display: inline-block;
  position: absolute;
  content: '';
  width: 100px;
  height: 5px; 
  border-radius: 50% 0 0 50%;
  background: linear-gradient(
    to right,
    rgba(255, 245, 174,0.7),
    rgba(255, 245, 174, 0.2) 50%,
    transparent);
  top: -1px;
  left: 0;
  animation: 6s linear infinite trail;
}
@keyframes glow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes core {
  0% {
    left: 100%;
    opacity: 1;
  }
  5% {
    left: 60%;
    opacity: 0.8;
  }
  10% {
    left: 0;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 0;
  }
}
@keyframes trail {
  0% {
    left: 100%;
    opacity: 1;
    width: 0;
  }
  5% {
    left: 65%;
    opacity: 0.5;
    width: 150px;
  }
  10% {
    left: 0;
    opacity: 0;
    width: 150px;
  }
  100% {
    left: 0;
    opacity: 0;
    width: 150px;
  }
}
.flex {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    position: relative;
	background-color: rgba(0, 0, 0, 0.15);
}
.content {
    text-align: center;
    margin-top: -10%;
    position: relative;
    z-index: 2;
}
#title {
    font-size: 80px;
}
#sub-title {
    font-size: 3vh;
    z-index: -1;
	display: inline-block;
	height: 50px;
}
.links > a {
    color: #d18cff;
    padding: 0 15px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
}
.links {
    color: #1e0031;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    min-height: 100%;
    margin: 0;
}
.twitter {
    margin: center;
    text-align: center;
	background-color: rgba(0, 0, 0);
}
footer {
	position: relative;
    z-index: 3;
}
.typed-cursor {
    font-size: 24px;
    opacity: 0.7;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
a:hover,
a:focus {
    color: #a600e2;
}
#avatar {
    background-image: url('../img/avatar.png');
    height: 184px;
    width: 184px;
    margin: auto;
	background-size: auto;
	background-position: center;
}

#grass {
	background-color: rgba(0, 0, 0, 0);
	position: absolute;
    height: 38vh;
    width: 100%;
    margin-bottom: -62vh;
	z-index: 1;
}