body{
background-color: lightblue;
}

.slider{
    position: fixed;
    bottom:0;
    left:0;
    width: 100%;

    background-color: blue;
    animation: slide 1s linear;
    
    /*Text in the slider*/
    color: white;
    font-size:30px;
    word-wrap: break-word;
}

@keyframes slide{
    0%{
        transform: translateY(100%);
    }

}