: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: 26vw;
    color: #ffffff55;
    z-index: -999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
}

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    font-size: 20vw;
    color: white;
}
.container {
    height: 154px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 64px;
}

.container a {
    border-radius: 3%;
}

.descricao h2 {
    font-size: 64px;
    color: var(--secundary-color);
}
.descricao p {
    font-size: 20px;
    color: var(--secundary-color);
    width: 500px;
}

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

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

footer{
    display: flex;
    justify-content: center;
    color: var(--secundary-color);
}



header span {
    cursor:default;
    transform: translateX(-100%);
    top: 50%;
    left: 50%;
    transform: translate(5%, 1%);
}

header span::before,
header span::after {
    content: "";
    position: absolute;
    height: 4px;
    background: #FFFFFF;
    width: 0;
    transition: width 0.7s ease;
}

header span::before {
    top: 0;
    left: 0;
}

header span::after {
    bottom: 0;
    right: 0;
}

header span:hover::before,
header span:active::before {
    width: 100%;
}   

header span:hover::after,
header span:active::after {
    width: 100%;
}


/*  TABLET  */
@media (max-width: 768px) {
    body {
        padding: 30px;
    }
    .sombra {
        transform: translate(-50%, -180%);
    }
    main {
        justify-content: space-between;
    }
    h1 {
        align-items: start;
        transform: translateY(40%);
        flex-grow: 0;
    }
    .container {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 0;
    }
    .descricao p {
        text-align: center;
    }
    footer {
        display: none;
    }


}

/*  MOBILE  */
@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    .descricao h2 {
        font-size: 38px;
    }
    .descricao p {
        display: none;
    }
    .pikachu {
        height: 50vh;
    }
    .container a {
        width: 100%;
    }
    .sombra {
        transform: translate(-50%, -230%);
    }
}