:root{
    --primary-color: #F5CF06;
    --secundary-color: #8E4106;
}
body{
    height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    padding: 70px;
    font-family: Righteous, sans-serif;
}
header{
    display: flex;
    align-items: center; 
    gap: 16px;
}
header span{
    color: var(--secundary-color);
    font-size: 32px;
}
main{
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}
h1{
    flex-grow: 1;
    font-size: 22vw;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
h2{
    font-size: 64px;
    
}
p{
    font-size: 20px;
    width: 500px;
   
}
a{
    width: 411px;
    height: 100px;
    font-size: 48px;
    background-color: var(--secundary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sombra{
    position: absolute;
    font-size: 28vw;
    color: #ffffff55;
    z-index: -100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -90%);
}
.Pikachu{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.descricao{
    z-index: 1;
}
.container{
    height: 154px;
    padding-bottom: 75px;
    color: var(--secundary-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
footer{ 
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secundary-color);
}

/*tabelt*/
@media (max-width: 1024px){

    body{
        padding: 30px;
    }
    .sombra{
        transform: translate(-50%, -180%);
    }
    h1{
        transform: translate(0, -30%);
    }
    .container{
        flex-direction: column;
        height: auto;
        align-items: center;
        padding: 0;
        gap: 8px;
    }
    .descricao p{
        text-align: center;
    }
    .Pikachu{
        transform: translate(-45%, -50%);
    }
    footer{
        display: none;
    }
}

/*Mobile*/
@media (max-width: 480px){
   .descricao p{
    display: none;
   }
   .sombra{
    transform: translate(-50%, -220%);
   }
   h1{
    transform: translate(0, -22%);
   }
   .Pikachu{
    height: 50vh;
   }
   h2{
    font-size: 38px;
   }
   .container a{
    width: 100%;
   }
}