:root{
    --primary-color: #F5CF06;
    --secundary-color: #8E4106;

}



body{
    height: 100vh;
    background-color: var(--primary-color);

    flex-direction: column;
    display: flex;
    padding: 70px; /**adiciona um espaço entre o conteúdo e o começo da tela */
    font-family: Righteous, sans-serif;
}

header{
    display: flex;
    align-items: center;
    gap: 16px; /**coloca um espaçamento entre o span e a foto da pokebola */
}

main{
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

header span{
    font-size: 32px;
    color: var(--secundary-color);
}
h1{
    flex-grow: 1;
    font-size: 25vw;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    color: var(--secundary-color);
    height: 154px;
    padding-bottom: 75px;
    display: flex;
    justify-content: space-between; /**afasta o botão de download do texto lets go pikachu */
    align-items: flex-end;
}
.container h2{
    font-size: 64px;
}

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

.container a{
    width: 411px;
    height: 100px;
    font-size: 48px;
    background-color: var(--secundary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;

}

.descricao{
    z-index: 1;
}

.sombra{
    position: absolute;
    font-size: 28vw;
    color: #ffffff55;
    z-index: -999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-90%);
}

.pikachu{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
footer{
    text-align: center;
    color: var(--secundary-color);
}

/* TABLET */
@media (max-width: 1024px){
    
    .sombra{
        transform: translate(-50%,-180%);
        }

    h1{
        transform: translate(0 , -30%);
    }
    body{
        padding: 30px;

    }
    .container{
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        padding: 0;
        gap: 8px;

    }

    .descricao p{
        text-align: center;
    }
    .pikachu{
        transform: translate(-46%,-50%);
    }

    footer{
        display: none;
    }
   
}

/* MOBILE */
@media (max-width: 480px){
    .descricao p{
        display: none;
    }

    .pikachu{
        height: 50vh;
    }
    
    .sombra{
     transform: translate(-50%,-220%);

    }

    h1{
     transform: translate(0,-22%);

    }

    .descricao h2{
        font-size: 38px;
    }

    .container a{
        width: 100%;
    }
}
