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

@font-face {
    font-family: Audiowide;
    src: url(../fonts/Audiowide-Regular.ttf);
}

html {
    background: 0% 0% / 50px 50px repeat
        repeating-radial-gradient(
            farthest-side at 50% 50%,
            yellowgreen 0% 15%,
            orange 15% 30%,
            rebeccapurple 30% 60%
        );
}

body {
    font-family: "Audiowide";
    text-shadow: black 0px 1px 2px;
    background-image: linear-gradient(rebeccapurple, black);
    text-align: center;
    border: black;
    border-style: solid;
    margin: 20px auto;
    min-width: 80px;
    max-width: 720px;
    border-radius: 20px;
    box-shadow: lime 0px 5px 5px;
}

button {
    font-family: "Audiowide";
    background-image: linear-gradient(rebeccapurple, black);
    color: yellowgreen;
    border: solid;
    font-size: 20px;
    border-radius: 20px;
    animation: spin 10s linear infinite;
    transform-origin: center;
}

img {
    filter: drop-shadow(0px 5px 5px greenyellow);
    animation: spin 10s linear infinite;
    transform-origin: center;
}

#photo {
    border-radius: 50%;
}

p {
    color: white;
}

h1 {
    color: greenyellow;
}

h2 {
    color: orange;
}

h3 {
    color: orange;
}

hr {
    border: black;
    border-style: solid;
    border-top: 5px;
    box-shadow: grey 0px 5px 5px;
}

ul {
    margin: 0px;
    padding: 0px;
}

figure {
    color: white;
}

a:link, a:visited {
    color: greenyellow;
    text-decoration: none;
}

#news-list {
    padding-bottom: 20px;
    color: white;
    list-style-type: "\1F6F8";
    list-style-position: inside;
}

.fa-brands {
    padding: 50px;
    font-size: 100px;
    width: 50px;
    text-align: center;
    color: orange;
}