.center {
  display: fl;
  margin-left: auto;
  margin-right: auto;
  width: 15%;
  background-color: black;
  background-blend-mode: darken;
  border-width: 3px;
  border-color: rgb(245, 184, 255);
  border-radius: 50%;
  -webkit-background-clip: border-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.center2 {
  display: fl;
  margin-left: auto;
  margin-right: auto;
  width: 15%;
  background-color: black;
  background-blend-mode: darken;
  border-width: 1px;
  -webkit-background-clip: border-box;
}

.spotify-rainbow-animation {
  background-color: black;
  border-radius: 25%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@keyframes spotify-animation {
  to {
    background-position: -4500vh;
  }
}

@media (max-width: 400px) {
  .flex-grid {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.header {
  background-color: #f1f1f1;
  padding: 30px;
  text-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.content {
  padding: 16px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky+.content {
  padding-top: 60px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ----------------------
	Timeline
------------------------*/
.wrap {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 20px;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.text-rainbow-animation {
  background-image:
    linear-gradient(to right, rgb(255, 0, 204), rgb(0, 123, 255), rgb(255, 0, 204), rgb(0, 123, 255), rgb(255, 0, 204), rgb(0, 123, 255), rgb(255, 0, 204), rgb(0, 123, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow-animation 500s linear infinite;
  -webkit-text-stroke-width: 2px;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@keyframes rainbow-animation {
  to {
    background-position: 4500vh;
  }
}

header {
  position: relative;
  z-index: 999;
}

section {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  box-sizing: border-box;
  overflow: hidden;
}

section.intro {
  text-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section.intro h2,
section.intro h5 {
  font-weight: 300;
  margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: #222;
}

h1 {
  font-size: 8vw;
  font-family: 'Comic Neue';
  font-weight: bold;
}

p {
  line-height: 1.4;
  font-family: 'Comic Neue';
  margin-bottom: 18px;
}

.flex-grid {
  column-gap: 2px;
  font-size: 8vw;
  font-family: 'Comic Neue';
  font-weight: bold;
}

body.dragging section {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.slider-navigation {
  position: fixed;
  top: 5%;
  right: 1vw;
  height: 90%;
  width: 4px;
  background: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.slider-navigation .tick {
  display: none;
  position: relative;
  cursor: pointer;
  height: 4px;
  width: 20px;
  background: #222;
}

.slider-navigation .tick:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  width: 100%;
  z-index: -1;
}

.slider-navigation .nav-pointer {
  position: absolute;
  top: 0;
  right: 0;
  background: #222;
  color: white;
  font-weight: 300;
  font-size: 12px;
  padding: 3px 8px;
  cursor: pointer;
  height: 22px;
  width: 44px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider-navigation .nav-pointer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  width: 100%;
  z-index: -1;
}

body.dragging {
  cursor: -webkit-grab;
  cursor: grab;
}

body.dragging .nav-pointer {
  -webkit-transition: none;
  transition: none;
}

.unselectable {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
}

/* ----------------------
  Section about-me
------------------------*/
.about-me {
  background-color: black;
  padding: 25px;
  border: 2px solid rgb(245, 184, 255);
  box-sizing: border-box;
  border-width: 2px;
  width: 100%;
  height: 100%;
}

.about-me * {
  background-color: black;
  color: rgb(245, 184, 255);
  font-family: 'Comic Neue';
  box-sizing: border-box;
}

.output {
  color: white;
}

.active:after {
  content: '_';
}

.hideme {
  display: none;
}

.about-me__content {
  font-size: 16px;
}

/* ----------------------
  particales js
------------------------*/
#changestyle {
  position: absolute;
  top: 45px;
  right: 125px;
  z-index: 9999;
}

#particles-js {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgb(35, 39, 65);
  backface-visibility: var(#333333);
  background-image: url("https://media.discordapp.net/attachments/1083531040397721711/1097237858143707337/blurryeyepink.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* ----------------------
  parallax-window
------------------------*/
.parallax-window {
  min-height: 200px;
  background: transparent;
}

.parallax-window-half {
  min-height: 100px;
  background: transparent;
}

/* ----------------------
  experience (company)
------------------------*/

/*.push-to-bottom {
  position: absolute;
  bottom: 5%;
}*/

.flx-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.latest-block {
  border-color: rgb(255, 255, 255);
}



@media (max-width: 400px) {
  .flex-grid {
    display: fl;
  }
}
