body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    line-height: 1.42857143;
    background: linear-gradient(-45deg, rgb(31, 73, 149), rgb(70, 150, 236), rgb(47, 110, 184), rgb(33, 150, 243));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
}

.content {
    text-align: center;
}

.content span{
    display: inline-block;
    list-style: none;
    transition-duration: 0.3s;
    margin-bottom: 10px;
}

.highlight {
    background-color: rgb(104, 104, 104);
    color: rgb(21, 206, 21);
    padding: 3px;
    border-radius: 5px;
}

footer {
    display: block;
    text-align: center;
    background-color: rgb(71, 71, 71);
    padding: 20px;
}

footer a{
    text-decoration: none;
    color: white;
    padding: 5px;
    margin: 60px;
    transition-duration: 0.3s;
}

footer a:hover{
    color: rgb(21, 206, 21);
    background-color: rgb(104, 104, 104);
    border-radius: 5px;
    
}

@media only screen and (max-width: 865px){
    footer {
        padding: 0;
    }

    footer a{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

#header {
    text-align: center;
}

.thread {
    background-color: rgb(57, 60, 65);
    border-radius: 13px;
    margin: 50px;
    padding: 10px;
}

.stats-background {
    background-color: rgb(57, 60, 65);
    border-radius: 13px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 20px;
    padding: 10px;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media only screen and (max-width: 440px){
    .thread {
        margin-left: 4px;
        margin-right: 4px;
    }
}