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

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

    main{
        justify-content: space-between;
    }

    h1{
        align-items: start;
        transform: translateY(9%);
        
    }

    .conteiner{
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 0;
    }

    .descricao p{
        text-align: center;
    }

    footer{
        display: none;
}

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

    .pikachu{
        height: 50vh;
    }

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

    .conteiner a{
        width: 100%;
    }

   .sombra{
    transform: translate(-50%, -360%);
   }
   
}