body {
	margin: 0 auto;
}

.content {
    /* padding-top: 50px; */
    display: block;
}

.content p{
    margin: 0 auto;
    width: fit-content;
    height: min-content;
} 

.content input {
    min-height: 25px;
}

.content textarea {
    min-height: 195px;
}

.chat-topline {
    width: 100%;
    height: 25px;
    min-height: 5%;
    max-height: 15%;
}

.chat-answer-line {
    margin: 0 auto;
    width: 100%;
    max-width: fit-content;
    height: fit-content;
    min-height: 10%;
    max-height: -webkit-fill-available;
    color: forestgreen;
}

.chat-line {
    width: 100%;
    height: 10px;
    min-height: 10%;
    max-height: 10%;
}

.chat-main {
    margin: 0 auto;
    width: 50%;
    height: min-content;
/*     display: flex;
align-items: center;
align-content: center;
justify-content: center; */
}

.chat-submit {
    background-color: #ffe33f; 
    color: #0500ff; 
    border: 2px solid #ffe33f; 
    margin-top: 5px; 
    cursor: pointer;
}

.chat-form input {
    width: -webkit-fill-available;
    height:10%
}

.chat-form textarea {
    width: -webkit-fill-available;
    height:30%
}

.footer {
        margin: 0 auto;
    width: 100%;
    max-width: fit-content;
    height: fit-content;
    min-height: 10%;
    max-height: -webkit-fill-available;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.lightrope {
    min-height: 36px;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    z-index: 10000
}

.lightrope div {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: flash-1;
    animation-name: flash-1;
    background: #00f7a5;
    border-radius: 50%;
    box-shadow: 0 1.3333333333px 16px 7px #00f7a5;
    display: block;
    display: inline-block;
    height: 8px;
    list-style: none;
    margin: 0 75px;
    padding: 0;
    position: relative;
    width: 8px
}

.lightrope div:nth-child(odd) {
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-name: flash-2;
    animation-name: flash-2;
    background: aqua;
    box-shadow: 0 1.3333333333px 16px 7px rgba(0,255,255,.5)
}

.lightrope div:nth-child(4n+2) {
/*     -webkit-animation-duration: 1.1s;
animation-duration: 1.1s; */
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
    -webkit-animation-name: flash-3;
    animation-name: flash-3;
    background: #f7009457;
    box-shadow: 0 1.3333333333px 16px 7px #f7009457
}

.lightrope div:nth-child(odd) {
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s
}

.lightrope div:nth-child(3n+1) {
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s
}

.lightrope div:before {
    background: #222;
    border-radius: 3px;
    content: "";
    height: 2.6666666667px;
    left: 1px;
    position: absolute;
    top: -1.3333333333px;
    width: 6px
}

.lightrope div:after {
    border-bottom: 2px solid #222;
    border-radius: 50%;
    content: "";
    height: 5.3333333333px;
    left: 5px;
    position: absolute;
    top: -4px;
    width: 162px
}

.lightrope div:last-child:after {
    content: none
}

.lightrope div:first-child {
    margin-left: -150px
}


@-webkit-keyframes flash-1 {
    0%,to {
        background: #00f7a5;
        box-shadow: 0 1.3333333333px 16px 7px #00f7a5
    }

    50% {
        background: rgba(0,247,165,.4);
        box-shadow: 0 1.3333333333px 16px 7px rgba(0,247,165,.2)
    }
}

@keyframes flash-1 {
    0%,to {
        background: #00f7a5;
        box-shadow: 0 1.3333333333px 16px 7px #00f7a5
    }

    50% {
        background: rgba(0,247,165,.4);
        box-shadow: 0 1.3333333333px 16px 7px rgba(0,247,165,.2)
    }
}

@-webkit-keyframes flash-2 {
    0%,to {
        background: aqua;
        box-shadow: 0 1.3333333333px 16px 7px aqua
    }

    50% {
        background: rgba(0,255,255,.4);
        box-shadow: 0 1.3333333333px 16px 7px rgba(0,255,255,.2)
    }
}

@keyframes flash-2 {
    0%,to {
        background: aqua;
        box-shadow: 0 1.3333333333px 16px 7px aqua
    }

    50% {
        background: rgba(0,255,255,.4);
        box-shadow: 0 1.3333333333px 16px 7px rgba(0,255,255,.2)
    }
}

@-webkit-keyframes flash-3 {
    0%,to {
        background: #f70094;
        box-shadow: 0 1.3333333333px 16px 7px #f70094
    }

    50% {
        background: rgba(247,0,148,.4);
        box-shadow: 0 1.3333333333px 16px 7px rgba(247,0,148,.2)
    }
}

@keyframes flash-3 {
    0%,to {
        background: #f7009457;
        box-shadow: 0 1.3333333333px 16px 7px #f7009457
    }

    50% {
        background: rgba(247,0,148,.4);
        box-shadow: 0 1.3333333333px 16px 7px rgba(247,0,148,.1)
    }
}

