
body {
  padding: 0;
  margin: 0;
  background-color:  #173151;
  color: #fff;
  user-select: none;
}
.container {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(./img/bg2.jpg) center center no-repeat;
  background-size: cover;
}
.logo {
  width: 150px;
  height: auto;
}
.title h1 {
  font-family: 'Times New Roman', Times, serif;
  text-shadow: 0 0 20px white, 0 0 10px white, 0 0 2px white;
}



.textcontainer {
  padding: 40px 0;
  text-align: center;
}

.particletext {
  text-align: center;
  font-size: 72px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  position: relative;
}
.particletext.bubbles > .particle {
  opacity: 0;
  position: absolute;
  background-color: rgba(33, 150, 243, 0.5);
  -webkit-animation: bubbles 3s ease-in infinite;
          animation: bubbles 3s ease-in infinite;
  border-radius: 100%;

}


@-webkit-keyframes bubbles {
  0% {
    opacity: 0;
  }
  20% {
    opacity: .8;
    transform: translate(0, -20%);
  }
  100% {
    opacity: 0;
    transform: translate(0, -1000%);
  }
}

@keyframes bubbles {
  0% {
    opacity: 0;
  }
  20% {
    opacity: .8;
    transform: translate(0, -20%);
  }
  100% {
    opacity: 0;
    transform: translate(0, -1000%);
  }
}



