
:root {
    /* Aqui foi colocada as variáveis por necessidade de implementar no projeto global */
    --primary-color: #F5CF06;
    --secundary-color:#8E4106;
}

body {
    /* Utilizei flex column para fazer os elementos ficarem abaixo do outro */
    flex-direction: column;
    /* Posssibilitar a mudança nos demais elementos que precisam ser movidos */
    display: flex;
    height: 100vh;
    padding: 70px;
    background-color:  var(--primary-color);
    font-family: Righteous, sans-serif;
}

header {
    display: flex;
    align-items: center;
    gap: 16px;
}
header span {
    color: var(--secundary-color);
    font-size: 32px;
}

main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.sombra {
    position: absolute;
    font-size: 28vw;
    color: #ffffff55;
    z-index: -999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -90%);
}
h1 {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-grow: 1;
    font-size: 20vw;
    color: white;
}
.container {
    color: var(--secundary-color);
    height: 154px;
    padding-bottom: 75px;
    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: 411px;
    height: 100px;
    font-size: 48px;
    background-color: var(--secundary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Pikachu {
    position: absolute;
    z-index: 7;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.descricao {
    z-index: 10;
}

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

/* Tablet */

@media (max-width:1024px) {
    .descricao{
        text-align: center;
    }
    footer {
        display: none;
    }
    body {
        padding: 30px;
    }
    main{
        justify-content: space-between;
    }
    h1{
        transform: translate(0%, -30%);
    }
    .sombra{
        transform: translate(-50%, -180%);
    }
    .container{
        flex-direction: column;
        height: auto;
        align-items: center;
        padding: 0;
        gap: 8px;
    }
    .Pikachu{
        transform: translate(-45%, -50%);
    }
}

/* 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%;
    }
}