.spinny-fox {
    width: 100px;
    height: 100px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.02,1.94,.91,-0.79); 
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    background-image: url("assets/broken_noise.png");
}

hr {
    margin-top: 1em;
    margin-bottom: 1em;
}

p {
    text-align: left;
}

ul {
    padding-left: 2em;
}

.socials {
    list-style-image: none;
    list-style-type: none;
}

.socials li {
    margin-bottom: 0.1em;
}

.socials img {
    vertical-align: middle;
    height: 1em;
    width: 1em;
    margin-right: 0.2em;
}

.badge img {
    width: 88px;
    height: 31px;
}

.badges-container {
    display: flex;
    align-items: center;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}