body { background-color: #18181b; padding: 0px; margin: 0px; overflow: hidden; } #messages { color: white; list-style-type: none; position: absolute; bottom: 0px; margin: 0px; padding: 0px; } .slide { animation: slide 0.5s forwards; } .item { width: 200px; margin: 0.5rem; } .destroy { animation: disappear 1s; opacity: 0; } .text { padding-right: 0.5rem; } .name { font-weight: bold; } @keyframes slide { from { } to { bottom: 0rem; } } @keyframes disappear { from { opacity: 1; } to { opacity: 0; } }