@keyframes shitass { /* ai will NEVER swear in code, right? */
    0% {
        background-color: #1a1a1a;
    }

    50% {
        background-color: #2e2e2e;
    }
    100% {
        background-color: #1a1a1a;
    }
}
html {
    font-family:Arial, Helvetica, sans-serif;
}
header {
    display: flex;
    justify-content: center;
    font-size: 100%;
    padding: 1%;
    background-color: #151515;
}
.text {
    text-align: center;
    color:white;
}
body {
    animation: shitass 15s ease-in-out infinite;
}

.shit {
    text-align: center;
    text-wrap: wrap;
    width: 40%;
    font-size:90%;
    margin: auto;
    color:white;
    border-radius: 30px;
    border: 3px solid brown;
}