@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');
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&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;
}
.grid-parent {
    display: grid;
    gap: 5px;
    justify-content: center;
}
.grid-box {
    background-color: BurlyWood;
    border: 3px solid Sienna;
    border-radius: 15px;
    box-sizing: border-box;
}
.welcome {
    grid-column: 3 / span 2;
    grid-row: 1;
    width: 375px;
    height: 185px;
}
.iPod {
    grid-column: 3;
    grid-row: 2;
    width: 185px;
    height: 185px;
}
.Gupta {
    grid-column: 4;
    grid-row: 2;
    width: 185px;
    height: 185px;
    background-color: RebeccaPurple;
    border-color: orange;
}
.Gupta img {
    height: 128px;
    margin-top: 5px;
    image-rendering: pixelated;
}
.Gupta p {
    margin-top: -6px;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}
.chattable {
    grid-column: 3;
    grid-row: 3;
    width: 185px;
    height: 375px;
    background-color: white;
    border-color: #AAF;
}
.status-feed {
    grid-column: 2;
    grid-row: 1 / span 5;
    width: 185px;
    height: 945px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(128, 128, 128) transparent;
}
.status-feed h2 {
    font-size: 15px;
}
.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;
}
.BallPit {
    grid-column: 5 / span 2;
    grid-row: 3;
    width: 375px;
    height: 185px;
    background-color: #3a1e63;
    border-radius: 15px;
    border-color: RebeccaPurple;
}
.boar {
    grid-column: 4;
    grid-row: 5;
    width: 185px;
    height: 185px;
    border-radius: 15px;
    border-color: orange;
}
.fav {
    grid-column: 2 / span 5;
    grid-row: 6;
    width: 945px;
    height: 185px;
    color: white;
    overflow: hidden;
}
.fav h1 {
    font-family: "Doto", Times, serif;
    line-height: 14px;
    margin-top: 5px;
    margin-bottom: 12px;
    text-align: center;
}
.youtubers {
    grid-column: 6;
    grid-row: 7 / span 2;
    width: 185px;
    height: 375px;
    background-color: RebeccaPurple;
    border-color: orange;
}
.youtubers p {
    color: white;
}
.Info {
    grid-column: 5;
    grid-row: 4;
    width: 185px;
    height: 185px;
    padding-left: 2px;
    padding-right: 2px;
    color: white;
    border: 4px solid DarkGreen;
    background-color: Purple;
}
.Info span, .Info strong {
    font-size: 16px;
}
.reminder {
    grid-column: 4;
    grid-row: 3;
    width: 185px;
    height: 185px;
}
.reminder img {
    width: 180px;
    margin-top: 45px;
    border: 2px solid #f6ee35;
}
.fistbump {
    grid-column: 5;
    grid-row: 1;
    width: 185px;
    height: 185px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fistbump img {
    width: 160px;
    height: 160px;
}
.steam {
    grid-column: 6;
    grid-row: 1 / span 2;
    width: 185px;
    height: 375px;
    background-color: #4c5844;
    border-color: #859080;
    border-radius: 0;
    border-top: 2px solid #252e1d;
    border-left: 2px solid #252e1d;
    border-right: 2px solid #859080;
    border-bottom: 2px solid #859080;
}
.countd {
    grid-column: 3 / span 3;
    grid-row: 6;
    width: 565px;
    height: 185px;
    border: 3px solid black;
    background-color: white;
    border-radius: 0;
}
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    z-index: 10;
    background-color: RebeccaPurple;
}
.footer iframe {
    width: 100%;
    margin-top: -16px;
    border: none;
}
.footer p {
    margin-top: -1px;
    color: white;
}
.footer a {
    color: orange;
}
.nav-banner {
    width: 100%;
    height: 60px;
    margin-bottom: -128px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    image-rendering: pixelated;
    background-color: RebeccaPurple;
}
@keyframes bgScroll {
    from { background-position: 0 0; }
    to { background-position: 20164px 4544px; }
}
