: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;
}

html {
    scroll-behavior: smooth;
}

.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';
}

@font-face {
    font-family: RodinNTLG;
    src: url('../FOT-RodinNTLG Pro DB.otf');
}

@font-face {
    font-family: MarvelouzTubeFont3;
    src: url('../MarvelouzTube Font 3.ttf')
}


.header {
    color: var(--accent-orange);
    text-shadow: 2px 2px white;
    font-size: 4vw;
}

.nintendou {
    font-family: MarvelouzTubeFont3;
    text-align: center;
}

.main-container {
    width: 95%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-bottom: 50px;
}


.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);
}

.text {
    color: var(--text-gray);
    text-shadow: 2px 2px white;
    width: 50vw;
    font-size: 3vh;
    text-align: center;
}

.screenshots {
    width: 50vw;
    box-shadow: var(--shadow);
    border-radius: 25px;
}

@media (max-width: 800px) {
    .text {
        color: var(--text-gray);
        text-shadow: 2px 2px white;
        width: 95vw;
        text-align: center;
    }

    .screenshots {
        width: 95vw;
        box-shadow: var(--shadow);
        border-radius: 25px;
    }

    .header {
        text-decoration: underline;
        color: var(--accent-orange);
        text-shadow: 2px 2px white;
        font-size: 8vw;
    }
}

.link {
    color: blue;
    cursor: pointer;
}

footer {
    color: var(--text-gray);
    text-shadow: 2px 2px white;
}
