@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

@font-face {
    font-family: 'yoster';
    src: url(yoster.ttf);
}

@font-face {
    font-family: 'Branflakes';
    src: url('Branflakes.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: black;
    margin: 0;
    background-repeat: repeat;
    animation: bgScroll 360s linear infinite;
}

p,
h1,
div {
    text-align: center;
    font-family: "Fredoka", Times;
}

h2 {
    font-weight: 500;
}

iframe {
    border: 0;
}

.nav-banner {
    background-color: RebeccaPurple;
    margin-bottom: -128px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    image-rendering: pixelated;
    border: 0;
    width: 100%;
}

.grid-box {
    background-color: BurlyWood;
    border: 3px solid Sienna;
    border-radius: 15px;
    box-sizing: border-box;
}

.grid-parent {
    display: grid;
    gap: 5px;
    justify-content: center;
}

.welcome {
    grid-column: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 2;
    width: 375px;
    height: 185px;
}

.iPod {
    grid-column-start: 3;
    grid-row-start: 3;
    width: 185px;
    height: 185px;
}

.Gupta {
    grid-column-start: 4;
    grid-row-start: 3;
    background-color: RebeccaPurple;
    border-color: orange;
    width: 185px;
    height: 185px;
}

.Gupta img {
    image-rendering: pixelated;
    height: 128px;
    margin-top: 5px;
}

.Gupta p {
    margin-top: -6px;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

.chattable {
    grid-column-start: 3;
    grid-row-start: 4;
    background-color: white;
    border-color: #AAF;
    width: 185px;
    height: 375px;
}

.status-feed {
    grid-column-start: 2;
    grid-row-start: 2;
    width: 185px;
    height: 945px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(128, 128, 128) transparent;
}

.status-feed h2 {
    font-size: 21px;
}

.status-feed p {
    font-size: 14px;
    padding-left: 8px;
    padding-right: 8px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.status-feed hr {
    height: 4px;
    background-color: Sienna;
    border-width: 0;
}

.Inv {
    grid-column-start: 6;
    grid-row-start: 2;
    width: 185px;
    height: 375px;
    border-color: cornflowerblue;
    background-color: lightgray;
}

.BallPit {
    grid-column: span 2 / span 2;
    grid-column-start: 5;
    grid-row-start: 4;
    width: 375px;
    height: 185px;
    background-color: black;
    border-radius: 15px;
    border-color: RebeccaPurple;
}

.boar {
    grid-column-start: 4;
    grid-row-start: 6;
    width: 185px;
    height: 185px;
    border-radius: 15px;
    border-color: orange;
}

.Info {
    height: 185px;
    width: 185px;
    color: white;
    grid-column-start: 5;
    grid-row-start: 5;
    border: 4px solid DarkGreen;
    background-color: Purple;
    padding-left: 2px;
    padding-right: 2px;
}

.Info span,
.Info strong {
    font-size: 16px;
}

.reminder {
    grid-column-start: 4;
    grid-row-start: 4;
    width: 185px;
    height: 185px;
}

.reminder img {
    width: 180px;
    margin-top: 45px;
    border: 2px solid #f6ee35;
}

.fistbump {
    grid-column-start: 5;
    grid-row-start: 2;
    width: 185px;
    height: 185px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fistbump img {
    width: 160px;
    height: 160px;
}

.steam {
    grid-column-start: 6;
    grid-row-start: 2;
    width: 185px;
    height: 375px;
    background-color: #4c5844;
    border-color: #859080;
    border-top: 2px solid #252e1d;
    border-left: 2px solid #252e1d;
    border-right: 2px solid #859080;
    border-bottom: 2px solid #859080;
    border-radius: 0;
}

.countd {
    grid-column: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 7;
    height: 185px;
    width: 565px;
    border: 3px solid black;
    border-radius: 0;
    background-color: white;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: RebeccaPurple;
    height: 50px;
    z-index: 10;
}

.footer iframe {
    width: 100%;
    margin-top: -16px;
    border: none;
}

.footer p {
    color: white;
    margin-top: -1px;
}

.footer a {
    color: orange;
}

@keyframes bgScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 20164px 4544px;
    }
}