#chat { filter: drop-shadow(2px 2px 0.2rem black); overflow-wrap: anywhere; bottom: 0; position: absolute; padding-left: 12px; padding-bottom: 6px; overflow: hidden; word-break: break-word; width: 100%; } .chat_line { display: flex; align-items: center; margin-bottom: 8px; animation: anim 30400ms; animation-fill-mode: forwards; } .username { font-weight: 700; margin-right: 8px; font-size: 28px; line-height: 1.2; text-shadow: -1px -1px 1px #000, 1px 1px 2px #000; -webkit-text-stroke: 0.5px black; } .message { font-size: 28px; font-family: "Open Sans", sans-serif; line-height: 38px; color: white; font-weight: 400; text-shadow: -1px -1px 1px #000, 1px 1px 2px #000; margin-left: 5px; } .badge { width: 24px; height: 24px; margin-right: 8px; border-radius: 6px; } .emote { max-width: 83px; max-height: 33px; margin-right: 6px; vertical-align: middle; } .colon { margin-right: 8px; color: #fff; } @keyframes anim { 0% { opacity: 0; transform: translateY(16px); } 1% { opacity: 1; transform: translateY(0); } 99% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-16px); } } /* Cores e estilos para diferentes tipos de usuários */ .username.vip { color: #9147ff; } .username.mod { color: #00ff7f; } .username.sub { color: #1e90ff; } .username.normal { color: #ffffff; } /* Ajuste para o corpo */ body { width: calc(100% - 20px); margin: 0; height: 100vh; background-color: transparent; font-family: "Open Sans", sans-serif; }