html {
  height: 100%;
}

body {
    background-color: #0c0c0c;
    height: 100%;
    width: 100%;
    /*margin: 0;*/
    overflow: hidden;
    background: url("../img/eia.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: bottom;
}

.container {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
}
.box {
    align-items: center;
    display: flex;
    height: 95vh;
    justify-content: center;
    width: 95vh;
}

.engraved-text {
    animation: move 3s ease infinite;
    background: linear-gradient(
        90deg, 
        #9b8127 0%, 
        #d4b550 39%, 
        #fee8a1 50%, 
        #d4b550 61%, 
        #9b8127 100%
    );
    background-size: 200% 100%;
    font-family: serif;
    font-size: 3em;
    text-transform: uppercase;
    text-align: center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes move {
    0% { background-position: -100% 0%; }
    100% { background-position: 100% 0%; }
}

.rain {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.rain.back-row {
  display: block;
  z-index: 1;
  bottom: 60px;
  opacity: 0.8;
}

.drop {
  position: absolute;
  bottom: 100%;
  width: 15px;
  height: 120px;
  pointer-events: none;
  animation: drop 0.5s linear infinite;
}

@keyframes drop {
  0% {
    transform: translateY(0vh);
  }
  75% {
    transform: translateY(90vh);
  }
  100% {
    transform: translateY(90vh);
  }
}

.stem {
  width: 1px;
  height: 60%;
  margin-left: 7px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  animation: stem 0.5s linear infinite;
}

@keyframes stem {
  0% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.splat {
  width: 15px;
  height: 10px;
  border-top: 2px dotted rgba(255, 255, 255, 1);
  border-radius: 50%;
  opacity: 1;
  transform: scale(0);
  animation: splat 0.5s linear infinite;
  display: block;
}

@keyframes splat {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  80% {
    opacity: 1;
    transform: scale(0);
  }
  90% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}