/* Main HTML Components*/
body {
  background: url(images/background.jpg) no-repeat center center fixed;
  background-blend-mode: saturation;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
  margin: 0;
  height: 100vh;
  text-align: center;
}


.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.imgcenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  z-index: 4;
}

.headline {
  color: whitesmoke;
  margin-bottom: 15px;
}

#particles {
  height: 100vh;
  width: 100vw;
  opacity: 0.4;
  margin: 0;
  background-color: black;
}

.fa {
  display: inline-block;
  width: 100%;
  color: whitesmoke;
  padding: 10px;
  width: 50px;
  text-align: center;
  text-decoration: none;
}

.fa:hover {
  text-shadow: 0 0 3px whitesmoke;
}

/* Container Texto */
.marquee-parent {
  color: whitesmoke;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 30px;
  border-left: whitesmoke;
  border-right: whitesmoke;
  border-top: transparent;
  border-bottom: transparent;
  border-width: 1px;
  border-style: groove;
  margin-bottom: 15px;
}

/* Text Attributes */
.marquee-child {
  padding-top: 5px;
  display: inline-block;
  width: 4000px;
  height: 30px;
  position: absolute;
  color: whitesmoke;
  animation: marquee 105s linear infinite; /* Velocidade */
}
.marquee-child:hover {
  animation-play-state: paused;
  cursor: pointer;
}

/* Animacao */
@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
