:root{
    --laranja-titulo: #fe575d;
    --violeta: #1f1347;
    --amarelo-botoes: #fcd24f;
    --gradiente-violeta: #4743cc;
    --gradiente-bage: #ffb58a;
    --cinza:#ccc;
}

body{
    background-color: #4743cc;
    display: grid;
    grid-template-areas: 
        "header"
        "main"
        "footer";
    height: 100vh;  
    grid-template-columns: 100%;
    grid-template-rows: 12% 76% 12%;
}
.header{
    align-items: center;
    background: linear-gradient(to left, var(--gradiente-violeta), var(--gradiente-bage));
    display: flex;
    grid-area: header;
    justify-content: center;
    border-bottom: 3px solid black;
    width: 100%;   
}
.header h1{
    color: var(--laranja-titulo);
    font-family: 'Press Start 2P', cursive;
    font-size: 2.0rem;
    letter-spacing: 0.5em;
    text-shadow:-8px 1px 1px var(--gradiente-violeta);
}

.principal-index{
    background-size: cover;
    background-position: center left;
    display: flex;
    grid-area: main;
    justify-content: space-around;
}

.area-logo{
    display: flex;
    justify-content: center;
    width: 45%;
}

#logo-forca{
    margin: auto;
    width: 70%;
} 

.div-buttons{
    align-items: flex-end;
    display: flex;
    height: 85%;
    justify-content: space-around;
    width: 45%;
}

.buttons{
    background-color: var(--amarelo-botoes);
    border: 3px solid var(--violeta);
    border-radius: 20px;
    box-shadow: 0px 4px 0px 0px var(--amarelo-botoes);
    color: var(--violeta);
    font-family: 'Press Start 2P', cursive;
    padding: 13px;
    width: 200px;
}

.buttons:hover{
    background-color: var(--violeta);
    border: 3px solid var(--amarelo-botoes);
    box-shadow: 0px 4px 0px 0px var(--violeta);
    color: var(--amarelo-botoes);
    width: 250px;
}

.buttons:active{
    background-color: var(--laranja-titulo);
}

.footer{
    background: linear-gradient(to left, var(--gradiente-bage), var(--gradiente-violeta));
    display: flex;
    flex-direction: column;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7em;
    grid-area: footer;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.footer-content{
    align-items: baseline;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

#github{
    width: 30px;
}

#linkedin{
    margin-left: 15%;
    width: 80px;
}

/*Responsive Index*/
@media screen and (max-width:480px) { 
    .header h1{
        font-size: 1rem;
    }
    .principal-index{
        flex-direction: column-reverse;    
    }

    .area-logo{
        align-self: center;
        height: 70%;
        width: 70%;
    }

    .div-buttons{
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: auto;
    }
    #botton-start{
        margin-bottom: 2rem;
    }
    .footer h2{
        font-size: 0.6rem;
    }
    
}
@media screen and (max-width:810px) { 

    .principal-index{
        flex-direction: column-reverse;    
    }
    .area-logo{
        align-self: center;
        height: 70%;
        width: 70%;
    }
    .div-buttons{
        align-items: center;
        width: auto;
    }
    .footer h2{
        font-size: 1rem;
    }
}























