* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0d0219;
}

.container {
    text-align: center;
}

.background {
    position: relative;
    z-index: -10;
    max-width: 60%;
    height: auto;

    -webkit-animation: spin 5s linear infinite;
    -moz-animation: spin 5s linear infinite;
    animation: spin 5s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(-360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(-360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(-360deg); 
        transform: rotate(-360deg); 
    } 
}

.message {
    position: relative;
    font-size: 24px;
    color: #d30000;
    margin-top: 24px;
}
