@import url(https://fonts.googleapis.com/css?family=Open+Sans);

html,
body {
  height: 100%;
  margin: 0;
  position: relative;
  background: #1B2A47;
  font-family: "Open Sans";
  overflow: hidden;
}


.pointer {
  pointer-events: none;
  position: absolute;
  border-radius: 30%;
  animation: implode 1s ease-in-out;
  animation-fill-mode: both;
  opacity: 0.8;
}

@keyframes implode {
  100% {
    transform: scale(0)
  }
}

p {
  font-size: 12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

#aniback {
  opacity: 0.1;
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

h2 {
  font-size: 30px;
  text-transform: uppercase;
  font-family: "Open Sans";
}

h6 {
  font-size: 1.00rem;
  font-weight: 300;
}

.btn.btn-primary:disabled {
  background-color: #5BA9FF;
}

.btn-sm {
  padding: 4px 50px;
  font-size: 15px;
  border-radius: 5px;
}

a {
  color: #6F8DC8;
}

a:hover {
  color: #A3B7DC;
  text-decoration: none;
  cursor: pointer;
}