@import url("https://fonts.googleapis.com/css?family=Roboto");
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: #000;
}

h1,
h2,
h5,
a {
  color: #fff;
  text-decoration: none;
  z-index: 1000;
}

#canv {
  width: 100vw;
  height: 100vh;
}

#to-party {
  padding: 10px 20px;
  border: 1px solid rgba(211, 211, 211, 0.4);
  color: rgba(211, 211, 211, 0.4);
  border-radius: 20px;
  margin-top: 10px;
  -webkit-transition: .2s;
  transition: .2s;
}

#to-party:hover {
  background: rgba(211, 211, 211, 0.4);
  color: #000;
  -webkit-transition: .2s;
  transition: .2s;
}

#from-party {
  padding: 10px 20px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 20px;
  margin-top: 50px;
  -webkit-transition: .2s;
  transition: .2s;
}

#from-party:hover {
  background: #fff;
  color: #000;
  -webkit-transition: .2s;
  transition: .2s;
}

.disco-container {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(-45deg, red, indigo, orange, pink, yellow, lightgreen, green, blue, rebeccapurple, purple);
  background-size: 400% 400%;
  -webkit-animation: animation 4s infinite;
          animation: animation 4s infinite;
}

.disco-container h2 {
  font-size: 64px;
}

.final-container {
  width: 100vw;
  height: 100vh;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.final-container h2,
.final-container p,
.final-container a {
  color: #fff;
}

.final-container h2 {
  font-size: 64px;
}

.circles {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.content {
  width: 100%;
  height: 100vh;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content h2 {
  font-size: 64px;
}

.content h5 {
  color: rgba(211, 211, 211, 0.4);
  margin-top: 50px;
}

.transition-circle {
  width: 0;
  height: 0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .6s;
  transition: .6s;
  z-index: -1;
}

.transition-circle:nth-child(1) {
  background: yellow;
  -webkit-transition-delay: .7s;
          transition-delay: .7s;
}

.transition-circle:nth-child(2) {
  background: green;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.transition-circle:nth-child(3) {
  background: purple;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

html.is-animating .transition-circle {
  width: 5000px;
  height: 5000px;
}

html.is-animating .transition-circle:nth-child(1) {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

html.is-animating .transition-circle:nth-child(2) {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

html.is-animating .transition-circle:nth-child(3) {
  -webkit-transition-delay: .7s;
          transition-delay: .7s;
}

.transition-fade {
  opacity: 1;
  -webkit-transition: .6s;
  transition: .6s;
}

html.is-animating .transition-fade {
  opacity: 0;
}

@-webkit-keyframes animation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 00%;
  }
}

@keyframes animation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 00%;
  }
}
/*# sourceMappingURL=index.css.map */