@keyframes scrollRight {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 120px 0;
    }
}

body {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.newsOutlet > .newsItem {
    display: flex;
    margin-bottom: 2px;
    margin-top: 0;

    justify-content: space-between;
    width: 100%;
}

.newsOutlet > .newsOutletTitle {
    font-size: 1.4em;
}

.newsOutlet {
    /* colors and typography */
    background-color: #ff9500;
    color: rgb(255, 255, 255);
    font-family: "WiiU", sans-serif;
    font-size: 0.9em;

    /* spacing */
    padding: 10px 20px;
    min-height: 200px;
    width: 100%;
    max-width: 600px;
    margin: 10px;
    margin-left: 0;
    margin-right: 50px;

    /* other */
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.444);
}
    
.header {
    /* define background pattern */
    background-image: url("../image/headerPattern.svg");
    background-repeat: repeat;
    background-size: 120px 120px;
    animation: scrollRight 10s linear infinite;

    /* dimensions */
    width: 100%;
    height: calc(100vh - 100px);
    padding: 50px;

    /* flexbox */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;

    /* other */
    color: white;
    font-family: "WiiU", sans-serif;

    /* div fades out gradiently when it ends */

}

.body {
    background-color: #eee;
    background-image: radial-gradient(circle at 2px 2px, #f7f7f7 2px, transparent 0), radial-gradient(circle at 2px 2px, #f7f7f7 2px, transparent 0);
    background-size: 12px 12px;
    background-position: 0 0, 6px 6px;

    height: fit-content;
    min-height: 60vh;

    font-family: "WiiU", sans-serif;
    color: rgb(106, 106, 106);
    padding: 25px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;

    padding: 30px;
    padding-right: 70px;
}

.body > h1 {
    margin: 0;
}

#credits > li {
    display: flex;
    align-items: center;
    gap: 10px;
}

#credits > li > .pfp {
    width: 50px;
    height: 50px;
}