/* Essential Body Styles */

body {
  background: linear-gradient(-45deg, #003caa, #0c0843, #0096cd, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;
  font-family: 'Open Sans', sans-serif;

  margin: 0;
  line-height: inherit;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Content Styling */
.content {
  max-width: 400px;
  width: 100%;
  padding: 80px 30px 30px;
  margin: 0 auto;
  display: block;
}

h1.intro {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  color: #fff;
  line-height: 1rem;
  padding-bottom: 5px;
  margin-bottom: 0px;
}

a {
  text-decotation: none;
  all: unset;
}

/* Responsive Typography */
@media (min-width: 768px) {
  .intro h1 {
    font-size: 2.5rem;
  }
}

h1.intro em {
  font-style: normal;
  font-weight: 700;
  display: block;
  padding: 0;
  margin: 0;
  font-size: 2rem;
  line-height: 1rem;
  text-align: center;
  color: #fff;
}
h1.intro em .change-text {
  width: 100%;
  display: inline-block;
  position: relative;
}
h1.intro em .change-text span {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  line-height: 1;
  clip: rect(0px, 0px, 350px, 0px);
}
h1.intro em .change-text span.active {
  -webkit-transition: all 0.85s ease-in-out;
  -moz-transition: all 0.85s ease-in-out;
  transition: all 0.85s ease-in-out;
  opacity: 1;
  clip: rect(0, 350px, 350px, 0px);
}

.particle-network-animation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  /*  background: linear-gradient(to bottom,#091133,#000); */
}
.particle-network-animation::before {
  z-index: -2;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
}


.content a {
  display: inline-block;
  margin-top: 80px;
  padding: 10px 30px;
  text-align: center;
}


.glow-on-hover {
    width: 200px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    outline: none;
    color: #0096cd;
    background: #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 30px;
    font-family: 'Open Sans', sans-serif;

}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 30px;
}

.glow-on-hover:active {
    color: #fff
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 0;
    top: 0;
    border-radius: 30px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@media only screen and (max-width: 768px) and (orientation: portrait) {
  /* CSS rules for mobile phones in portrait mode */
  h1.intro {
  font-size: 1.8rem;
  line-height: 1rem;
  }
  h1.intro em {
  font-size: 1.8rem;
  line-height: 1rem;
  }
}