h1 {
    font-weight: bold;
    margin-top: 0;
}

body {
    overflow-x: hidden;
}

* {
    cursor: url('../image/wiiuc.cur') 16 16, auto !important;
    font-family: "WiiU", sans-serif;
}

.footer {
    background: linear-gradient(to bottom, #ffb300, #f08300);
    height: fit-content;
    padding: 50px;
    color: white;
}

.marg10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* just navbar things */
.navbar {
    background-color: rgba(255, 180, 74, 0.6);
    backdrop-filter: blur(10px);
    height: 60px;
    width: calc(100% - 20px);
    display: flex;
    align-items: center;
    justify-content: left;
    position: fixed;
    top: 10px;
    left: 10px;
    border-radius: 10px;
    z-index: 10000;
}

.navbar > .navbarName {
    color: white;
    user-select: none;
}

.navbar > .navbarIcon {
    width: 40px;
    height: 40px;
    margin-left: 15px;
    margin-right: 5px;
}

.navbar > a {
    color: white;
    font-family: "WiiU", sans-serif;
    font-size: 0.9em;
    text-decoration: none;
}

.navbar > *:first-child {
    margin-left: 25px;
}

.navbar > * {
    margin-right: 25px;
}


/* header and news outlet things */
.tvVideo {
    position: relative;
}

button {
    background-color: #ff9500;
    border: none;
    border-radius: 10px;
    color: white;
    font-family: "WiiU", sans-serif;
    font-size: 1.2em;
    padding: 10px 20px;
    cursor: pointer;
}

/* loadcover things */
.loadCover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 0.5s all;
    pointer-events: none;
}

.progressBar {
    padding: 0;
    margin-top: 10px;
    width: 100%;
    background-image: linear-gradient(to top, #e6e6e6, #f2f2f2);
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2) inset;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
}

@keyframes movePattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 70px 60px;
    }
}
.progressBar > .innerBar {
    height: 100%;
    background-size: 70px 60px;
    background-image: linear-gradient(to top, #006ce0, #00bbff);
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

    font-family: "WiiU", sans-serif;
}

/* following code is from website v1 */
:root {
    --pill-bg: linear-gradient(to top, #ededed, #f5f5f5);
    --text-gray: #828282;
    --accent-orange: #ffb300;
    --shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

.pill-button {
    background: var(--pill-bg);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    color: var(--accent-orange);
    font-size: 20px;
    text-align: center;
    transition: transform 0.2s ease;
    width: fit-content;
    min-width: 250px;
}

.pill-button:hover {
    transform: scale(1.05);
}

.pill-button:active {
    transform: scale(0.95);
}

.centdiv {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-button-big {
    background: var(--pill-bg);
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    color: var(--text-gray);
    font-size: 15px;
    text-align: center;
    transition: transform 0.2s ease;
    width: 90%;
    min-width: 250px;
}

.card {
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 20px;
    width: 100%;
    min-width: 400px;
    transition: 0.4s all;
    overflow: hidden;
}
.card > h1 {
    margin: -20px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(to top, #ededed, #fff);
    text-align: center;
    font-size: 22px;
    color: var(--accent-orange);
    border-bottom: 1px solid #ddd;
    text-shadow: 1px 1px #eee;
}

.card:hover {
    box-shadow: 0px 10px 20px rgba(0,0,0,0.3);
    scale: 1.02;
}

@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bgBlackAnim {
    0% {
        background-color: transparent;
    }
    100% {
        background-color: rgba(0, 0, 0, 0.8);
    }
}
/* smalltalk expansion */
.smalltalk {
    animation: 0.6s bgBlackAnim cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.smalltalk > .page {
    animation: 0.6s appear cubic-bezier(0.16, 1, 0.3, 1);
    scale: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
}