:root {
    --bg-color:#eee;
    --card-bg:#f5f5f5;
    --text-gray:#828282;
    --accent-orange:#ffb300;
    --shadow:0px 5px 15px rgba(0,0,0,0.2);
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 2px 2px, #f7f7f7 2px, transparent 0), radial-gradient(circle at 2px 2px, #f7f7f7 2px, transparent 0);
    background-size: 20px 20px;
    background-position: 0px 0px, 10px 10px;
    font-family: 'RodinNTLG', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: 100px;
}


html {
    scroll-behavior: smooth;
}

@font-face {
    font-family:RodinNTLG;
    src:url('../FOT-RodinNTLG Pro DB.otf');
}

@font-face {
    font-family:MarvelouzTubeFont3;
    src:url('../MarvelouzTube Font 3.ttf')
}

.nintendoufont {
    font-family:MarvelouzTubeFont3;
    text-align: center;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.top-button {
    width: 90%;
    max-width: 800px;
    height: 70px;
    font-size: 28px;
    background: linear-gradient(to top, #f2f2f2, #e6e6e6);
    color: var(--text-gray);
    border: none;
    border-radius: 0 0 15px 15px;
    box-shadow: var(--shadow);
    text-shadow: 1px 1px white;
    cursor: pointer;
    font-family: 'MarvelouzTubeFont3';
}

.progressbar {
    position: relative;
    height: 50px;
    width: 50vw;
    box-shadow: var(--shadow);
    border-radius: 15px;
    background: linear-gradient(to top, #f2f2f2, #e6e6e6);
}

.header {
    color: var(--accent-orange);
    text-shadow: 2px 2px white;
    font-size: 4vw;
}

.text {
    color: var(--text-gray);
    text-shadow: 2px 2px white;
    width: 50vw;
    font-size: 3vh;
    text-align: center;
    position: relative;
    right: 25px;
}

#progresstext {
    position: relative;
    left: 12px;
}

@media (max-width: 800px) {
    .progressbar {
        position: relative;
        height: 50px;
        width: 95vw;
        box-shadow: var(--shadow);
        border-radius: 15px;
        background: linear-gradient(to top, #f2f2f2, #e6e6e6);
    }

    .header {
        text-decoration: underline;
        color: var(--accent-orange);
        text-shadow: 2px 2px white;
        font-size: 8vw;
    }

    .text {
        color: var(--text-gray);
        text-shadow: 2px 2px white;
        width: 95vw;
        font-size: 3vh;
        text-align: center;
        position: relative;
        right: 25px;
    }
}

#value {
    width: calc(100% / 14 * var(--value));
    height: inherit;
    box-shadow: var(--shadow);
    border-radius: 15px;
    background: linear-gradient(to top, #037bfc, #006ce0);
}

.check {
    position: relative;
    top: 12px;
}

#progresslist {
    list-style-type: none;
}

.pill-button {
    background: var(--card-bg);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    color: var(--accent-orange);
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease;
    width: fit-content;
    min-width: 250px;
    text-shadow: 2px 2px white;
}


.pill-button:hover {
    transform: scale(1.05);
}
.pill-button:active {
    transform: scale(0.95);
}

#home-pill {
    position: relative;
    top: 40px;
}
