html, body {
    margin: 0;
    color: #fff;
    font-family: Arial;
}

.text-container {
    background: #000;
    width: 100vw;
    height: 100vh;
    font-weight: bold;
    font-size: 34px;
    position: relative;
    overflow: hidden;
}

.text-container > div {
    animation: come2life linear 10s infinite;
    transform-origin: center center;
    opacity: 0;
    width: 300px;
    height: 230px;
    position: absolute;
    backface-visibility: hidden;
}

.text-container > div:nth-child(1) {
    left: 30vw;
    top: 30vh;
    animation-delay: 0s;
}

.text-container > div:nth-child(2) {
    left: 70vw;
    top: 30vh;
    animation-delay: 4s;
}

.text-container > div:nth-child(3) {
    left: 50vw;
    top: 50vh;
    animation-delay: 8s;
}

.text-container > div:nth-child(4) {
    left: 30vw;
    top: 70vh;
    animation-delay: 6s;
}

.text-container > div:nth-child(5) {
    left: 70vw;
    top: 70vh;
    animation-delay: 2s;
}

@keyframes come2life {
    0% {
        transform: scale3d(0,0,1) rotate(0.02deg);
        opacity: 0;
        filter: blur(10px);
    }
    25% {
        transform: scale3d(1,1,1) rotate(0.02deg);
        opacity: 1;
        filter: blur(0px);
    }
    40% {
        opacity: 1;
        filter: blur(0px);
    }

    80% {
      opacity: 0;
    }
  
    100% {
        transform: scale3d(4,4,1) rotate(0.02deg);
        filter: blur(10px);
    }
}


.passwordbox{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px 40px;
    bottom: 43vh;
    left: 10%;
 }
.passwordbox p {
    color:#fff;
    font-size: 20px; 
    margin: 5px 0 20px 0;
}
.passwordbox a {
    color: #108a09;
    text-decoration: none;
}
.input{
    width:95%;
    background: transparent;
    height: 30px;
    border:1px solid #555;
    padding: 10px;
    font-size: 18px;
    color:#fff;
    margin-bottom: 20px
}

.btn{
    background: #108a09;
    border:none;
    padding: 10px 25px;
    color:#fff;
    font-size: 17px;
    margin-bottom: 14px;
}

.passwordbox small{
    color:#999;
}

@media (max-width: 500px) {
    
    .passwordbox{left:0;padding: 20px;}
    
}