.login-nav{

    margin-top: 14.01%;
    margin-bottom: 5.3%;
    color: aliceblue;
    text-align: center;
    font-size: 2rem;
}


.typewriter-animation {
    display: inline-block;
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    letter-spacing: .15em;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
    max-width: 100%;
  }
  
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  
  @keyframes blink-caret {
    from, to {
      border-color: transparent;
    }
    50% {
      border-color: orange;
    }
  }

  .typewriter-animation2 {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: .15em;
    max-width: 100%;
    opacity: 0; 
    animation: appear 20s forwards, typing 5.5s steps(50, end) 1.2s forwards, blink-caret .75s step-end infinite 4.5s forwards;
  }
  
  @keyframes appear { 
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes typing {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }

.login-container {
    background-color: #020202;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(250, 250, 250, 0.836);
    width: 50%;
    height: 100px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    text-align: center;
    transition: height 0.9s ease;
}
.login-container:hover {
    height: 200px;
    
}
@media (max-width: 900px) {

    .login-nav{

        font-size: 2rem;

    }

    .login-container{
        height: 80px;
        
    }
    

}
@media (max-width: 500px) {

    .login-nav{

        font-size: 1rem;
        margin-top: 200px;

    }

    .login-container{
        height: 50px;
        width: 90%;
    }

}

.login-container label {
    display: block;
    margin-bottom: 8px;
}

.login-container input {
    width: 95%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.login-container button {
    background-color: #4caf50;
    color: #020202;
    padding: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 2px;
}

.login-container button:hover {
    background-color: #45a049;
}

.kontakt-1{

    
    background-color: #020202;
    margin-left: 20%;
    margin-right: 20%;
    align-items: center;
}
