:root {
    --primary-color: #F5CF06;
    --secondary-color: #8E4106;
}

/* ====== BASE ====== */
body {
    height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    padding: 70px;
    font-family: Righteous, sans-serif;
}

header {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 16px;
}

header span { 
    font-size: 32px;
    color: var(--secondary-color);
}

main {
    background-color: var(--primary-color);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sombra {
    position: absolute;
    font-size: 40vh;
    color: #ffffff55;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 1;
}

h1 {
    background-color: var(--primary-color);
    flex-grow: 1;
    font-size: 35vh;
    color: white;
    display: flex;
    justify-content: center; 
    align-items: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.pikachu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 2;
    max-width: 80%;
}

.container {
    min-height: 154px;
    padding-bottom: 75px;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.container h2 {
    font-size: 64px;
}

.container p {
    font-size: 20px;
    width: 500px;
}

.container a {
    width: 413px;
    height: 100px;
    font-size: 48px;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

footer {
    text-align: center;
    color: var(--secondary-color);
}

/* ====== TABLET ====== */
@media (max-width: 1024px) {
    body {
        padding: 40px;
    }

    header span {
        font-size: 28px;
    }

    .sombra {
        font-size: 20vh;
        transform: translate(-50%, -180%);
    }

    h1 {
        font-size: 18vh;
        transform: translate(0, -30%);
    }

    .pikachu {
        transform: translate(-50%, -50%);
        width: 45vh;
    }

    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 200px;
    }

    .container h2 {
        font-size: 48px;
    }

    .container p {
        font-size: 18px;
        width: 100%;
    }

    .container a {
        width: 50%;
        height: 80px;
        font-size: 36px;
    }

    footer {
        display: none;
    }
}

/* ====== MOBILE ====== */
@media (max-width: 480px) {
    body {
        padding: 20px;
    }

    header {
        justify-content: center;
    }

    header span {
        font-size: 24px;
    }

    .sombra {
        font-size: 14vh;
        transform: translate(-50%, -250%);
    }

    h1 {
        font-size: 12vh;
        transform: translate(0, 10%);
    }

    .pikachu {
        transform: translate(-50%, -50%);
        width: 49vh;
        max-width: 90%;
    }

    .container {
        min-height: 100vh;
        text-align: center;
    }

    .container h2 {
        font-size: 40px;
        transform: translate(0, 300px);
    }

    .container p {
        display: none;
    }

    .container a {
        width: 90%;
        font-size: 40px;
    }

    footer {
        display: none;
    }
}