body {
    color: #838383;
    font-family: Play, Lucila, Verdana, sans-serif;
    /* padding-top: 20px !important; */
    position: absolute;
    left: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    /* Center the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    backface-visibility: hidden;
    animation: animate 60s linear infinite;
    animation-timing-function: ease-in-out;
    background-attachment: fixed;
    /* background-image: url('themes/default/img/01.jpg'); */
    /* background-color: #2679e6; */
}

@keyframes animate {
    0%,
    100% {
        background-image: url('themes/default/img/01.jpg');
    }
    20% {
        background-image: url('themes/default/img/03.jpg');
    }
    40% {
        background-image: url('themes/default/img/02.jpg');
    }
    60% {
        background-image: url('themes/default/img/04.jpg');
    }
    80% {
        background-image: url('themes/default/img/05.jpg');
    }
}
