
@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

body{ background-color:#0a0a23}

.background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #0a0a23;
  overflow: hidden;
  z-index: -1;
}

.ball {
  position: absolute;
  width: 20vmin;
  height: 20vmin;
  border-radius: 50%;
  backface-visibility: hidden;
  animation: move linear infinite;
}

.ball:nth-child(odd) {
    color: #006D5B;
}

.ball:nth-child(even) {
    color: #FF6F61;
}

/* Using a custom attribute for variability */
.ball:nth-child(1) {
  top: 77%;
  left: 88%;
  animation-duration: 40s;
  animation-delay: -3s;
  transform-origin: 16vw -2vh;
  box-shadow: 40vmin 0 5.703076368487546vmin currentColor;
}
.ball:nth-child(2) {
  top: 42%;
  left: 2%;
  animation-duration: 53s;
  animation-delay: -29s;
  transform-origin: -19vw 21vh;
  box-shadow: -40vmin 0 5.17594621519026vmin currentColor;
}
.ball:nth-child(3) {
  top: 28%;
  left: 18%;
  animation-duration: 49s;
  animation-delay: -8s;
  transform-origin: -22vw 3vh;
  box-shadow: 40vmin 0 5.248179047256236vmin currentColor;
}
.ball:nth-child(4) {
  top: 50%;
  left: 79%;
  animation-duration: 26s;
  animation-delay: -21s;
  transform-origin: -17vw -6vh;
  box-shadow: 40vmin 0 5.279749632220298vmin currentColor;
}
.ball:nth-child(5) {
  top: 46%;
  left: 15%;
  animation-duration: 36s;
  animation-delay: -40s;
  transform-origin: 4vw 0vh;
  box-shadow: -40vmin 0 5.964309466052033vmin currentColor;
}
.ball:nth-child(6) {
  top: 77%;
  left: 16%;
  animation-duration: 31s;
  animation-delay: -10s;
  transform-origin: 18vw 4vh;
  box-shadow: 40vmin 0 5.178483653434181vmin currentColor;
}
.ball:nth-child(7) {
  top: 22%;
  left: 17%;
  animation-duration: 55s;
  animation-delay: -6s;
  transform-origin: 1vw -23vh;
  box-shadow: -40vmin 0 5.703026794398318vmin currentColor;
}
.ball:nth-child(8) {
  top: 41%;
  left: 47%;
  animation-duration: 43s;
  animation-delay: -28s;
  transform-origin: 25vw -3vh;
  box-shadow: 40vmin 0 5.196265905749415vmin currentColor;
}

#centered{
  height: 100%;
  width: 100%;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#container {
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  max-width: 60%;
  z-index:1;
  margin:0;

}
img {
height: 450px;
color:#fff;
margin-top: -50px
}

h1{
  font-size:3rem;
  color:#FFF;
  margin-top:-150px;
  text-align: center;

}

#input-section{
  display:flex;
  flex-direction:column;
  border-radius: 10px;
  border: 1px #000 solid;
  padding: 10px 50px;
  box-shadow: 5px 5px 10px 5px lightblue;
  min-height:220px;
  margin-top: -35px;
}

.static-text {
  font-size: 1.7rem;
  color:#fff;
  text-align:center;

}

input{
  background:none;
  color: #fff;
  font-size: 1.6rem;
  border:none;
  border-bottom: 2px lightblue solid;
  margin-bottom:5px;
  text-align:center;
  
}


button{align-self:center;
margin-top:10px;
margin-bottom: 10px;
cursor:pointer;
color:#fff;
background-color:#0a0a23;
height:30px;
width:80px;
font-size: 1.2rem;
border-radius:20px
}

button:hover{
  background-color: #0b232f;
  height:40px;
  width:90px;
  font-size: 1.25rem;

}

.result {
  font-size: 1.5rem;
  color:#fff;
  text-align:center;
  padding: 5px;

}

#hint-section{
    display:flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  min-width: 60%;
  z-index:1;
  border-radius: 10px;
  border: 1px #000 solid;
  padding: 5px 20px;
  margin-top: 50px;
  box-shadow: 5px 5px 10px 5px lightblue;
  background-color:#0b232d;

}

#hint-section p{
  
  font-size: 1.2rem;
  color:#fff;
  text-align:justified;

}

#result {
  
  font-size: 1.4rem;
  color:#fff;
  text-align:center;
  padding-top:20px;

}
