body {
    color: #DA6DBE;
    font-size: 50px;
    font-family: 'comic sans ms';
    margin:0px;
}
.center {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-content: center;
}
.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.chat  {
    background-image: url("./chat/chat\ thug.png");
    height: 100%;
    background-color: black ;
    animation: epilepsy 0.2s infinite, wow 0.5s linear infinite;
}
@keyframes wow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 474px 417px;
    }
}


.white-text {
    color:white;
}
.rotating {
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform:rotate(360deg);
    }
}

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

.red-button {
    background-color:#e84221;
    border-radius:360px;
    cursor:pointer;
    color:#ffffff;
    font-size:100px;
    padding:90px 120px;
    text-decoration:none;
    border: none;
    margin-top: 20px;
}

.red-button:hover {
    background:linear-gradient(to bottom, #e84221 5%, #e84221 100%);
    background-color:#e84221;
}

.red-button:active {
    position:relative;
    top:1px;
}

.prevention {
    background-color: black;
    height: 100%;
}

.url {
    text-decoration: none;
}

.moula {
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    max-height: 70vh;
    max-width: 80vw;
}

@keyframes epilepsy {
    0% {
        background-color: rgba(228, 59, 59, 0.582);
    }
    33% {
        background-color: rgba(0, 251, 75, 0.582);
    }
    66% {
        background-color: rgba(255, 45, 237, 0.582);
    }
}

.drogue {
    animation: bounce 0.1s infinite;
}

@keyframes bounce {
    0% {
        transform: translateY(0) translateX(0);
    }
    40% {
        transform: translateY(-1.5vw) translateX(-0.5vw);
    }
    60% {
        transform: translateY(-0.75vw) translateX(0.5vw);
    }
}