* {
    margin: 0%;
    padding: 0%;
}

body {
    background-color: #22223a;
}

.banner {
    height: 500px;
    width: 100%;
}

.text {
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(204, 196, 171);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
}

.text1 {
    width: 100%;
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    border-right: .115em solid rgb(204, 196, 171);
    /* The typwriter cursor */
    white-space: nowrap;
    /* Keeps the content on a single line */
    margin: 0 auto;
    /* Gives that scrolling effect as the typing happens */
    letter-spacing: .01em;
    /* Adjust as needed */
    animation:
        typing 3.5s steps(57, end),
        blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: rgb(204, 196, 171);
    }
}

.fadeInUp-animation {
    font-weight: bold;
    font-size: 38px;
    font-family: Arial, Helvetica, sans-serif;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInUp-animation {
  animation: 5.5s fadeInUp;
}


.footer {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(204, 196, 171);
}


.footertext {
    margin-right: 200px;
    color: inherit;
    position: fixed;
    bottom: 0px;
}
