*{
    font-family: Arial, sans-serif;
}
body {
    margin: 40px;
    background-image: url("/img/bg.png");
    background-size: 64px 64px;
    color: white;
    image-rendering: pixelated;
    animation: backgroundAnimation 4s linear infinite;
}

@keyframes backgroundAnimation {
    0% { background-position: 0 0; }
    100% { background-position: 64px 64px; }
}


h1,h2{
    text-align: center;
}
h1 {
    color: #d67eff;
}

.section{
    margin:auto;
    margin-bottom: 20px;
    padding: 10px;
    border: 2px solid #d67eff;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    max-width:500px;
}

a{
    color:cyan;
}

.center-block{
    display: block;
    margin: auto;
}