* {
    margin: 0;
    padding: 0;
}
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
    background-color: #720f11;
    overflow: hidden;
}
.messages {
    width: 100%;
    height: 4vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
}
.messages li {
    width: 80%;
    height: 100%;
    background: rgb(244, 114, 114);
    border: 2px solid rgb(200, 45, 45);
    padding-left: 2vw;
    display: flex;
    align-items: center;
    border-radius: 8px;
}
#Abort {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 95%;
    transform: translate(-50%,-50%);
    color: whitesmoke;
    text-decoration: none;
}
#Back-Text {
    position: absolute;
    display: flex;
    justify-content: center;
    font-weight: 300;
    font-size: 20vw;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    text-wrap: wrap;
    color: white;
    font-family: "Bebas Neue", sans-serif;
    column-gap: 25vw;
    align-items: center;
    text-align: center;
    
}
#Back-Text span {
    letter-spacing: calc((40vw - 3.5ch)/2);
}
#Back-Text:first-child {
    padding-left: 3.5vw;
}
#Back-Text:last-child {
    text-align: right !important;
}