body {
    font-family: 'Trebuchet MS', sans-serif;
}

.container {
    background: #23223a;
    width: 15rem;
    border-radius: 5px;
    padding: 1.7rem;
}

.code {
    white-space: nowrap;
    font-size: 0.9rem;
    color: white;
}

.code .imas {
    font-size: 0.9rem;
    color: yellow;
    display: inline;
}

.c2 {
    display: inline-block;
    margin-top: 5%;
}

.typed-out {
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    margin-top: 10%;
    font-size: 0.9rem;
    color: cyan;
    animation: typing 1.5s steps(20, end) forwards, blinking .75s infinite;
    width: 0;
}

.white-txt {
    color: white;
  }

@keyframes typing {
    from {
        width: 0
    }
    to {
        width: 100%;
    }
}

@keyframes blinking {
    from {
        border-color: transparent
    }
    to {
        border-color: orange;
    }
}

.wrapper {
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
    background-size: 1800% 1800%;
    -webkit-animation: rainbow 18s ease infinite;
    -z-animation: rainbow 18s ease infinite;
    -o-animation: rainbow 18s ease infinite;
    animation: rainbow 18s ease infinite;
}

@-webkit-keyframes rainbow {
    0% {
        background-position: 0% 82%
    }
    50% {
        background-position: 100% 19%
    }
    100% {
        background-position: 0% 82%
    }
}

@-moz-keyframes rainbow {
    0% {
        background-position: 0% 82%
    }
    50% {
        background-position: 100% 19%
    }
    100% {
        background-position: 0% 82%
    }
}

@-o-keyframes rainbow {
    0% {
        background-position: 0% 82%
    }
    50% {
        background-position: 100% 19%
    }
    100% {
        background-position: 0% 82%
    }
}

@keyframes rainbow {
    0% {
        background-position: 0% 82%
    }
    50% {
        background-position: 100% 19%
    }
    100% {
        background-position: 0% 82%
    }
}

.row {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.justify-content-center {
    justify-content: center;
}

.text-align-center {
    text-align: center;
}

.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}