*{ /* RESET DO CSS */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{ 
    color: whitesmoke;
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    width: 100vw;
    
}

@media(min-width:400px){
    body{
        font-size: 14px;
    }
}


/* INICIO DE FONTES E TAGAS GERAIS */
a{
    color: whitesmoke; 
    text-decoration: none; 
}

a:hover{
    text-decoration: underline;
    transition: text-shadow 2s, color 1s;
}

.site-title,
.site-subtitle{
    text-align: center;
    
}

.site-title{
    font-family: 'Overpass Mono', monospace;
}

h1{

    text-shadow: 0px 0px 10px white;
}

h2{
    text-shadow: 0px 0px 5px white;
    font-style: italic;
    
}

/* TÉRMINO DE FONTES E TAGAS GERAIS */



/* INICIO DO HEADER */

header{
    height: 100vh;
    background-image: url("../imagens/img_animate.gif");
    background-size: 100vw 100vh;
    height: 100vh;
    max-width: 100vw;
}

.secao-cabecalho{
    padding:10vh;
    transform: scale(0) translateZ(50vh);
    opacity: 0;

    animation: linear 2s animacaoTitulos forwards; /* CHAMANDO A ANIMAÇÃO ABAIXO */
}

@keyframes animacaoTitulos{ /* FUNÇÃO DE ANIMAÇÃO DO TEXTO INICIAL */

    100%{
        transform: scale(1) translateZ(0vh);
        opacity: 1;
    }

}

.secao-cabecalho h1{
    margin-top: 35vh;
}

/* TÉRMINO DO HEADER */

/* INICIO DA SECAO SOBRE*/

.secao-sobre{
    background-image: linear-gradient(black, white);
    margin-top: -0.5vh;
    min-height: 100vh;
    padding: 2em;
    max-width: 100vw;
}
.secao-sobre h2{
    padding-top: 1em;
}

.secao-sobre p{
    font-size: 1.2em;
    line-height: 1.8em;
    margin-bottom: 1em;
    margin-right: 10em;
    text-indent: 2em;
    text-align: justify;
    
}

.secao-sobre img{
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
    float: right;
    height: 300px;
    margin-left: 3em;
    margin-right: 3em;
    width: 300px;
}


/* TÉRMINO DA SEÇÃO SOBRE */

/* INICIO - SEÇÃO IMAGENS */
.secao-meuportifolio{
    background-image: linear-gradient(white, black);
    max-width: 100vw;
    min-height: 120vh;
    padding: 2em;
    text-align: left;
}

.secao-meuportifolio img{
    border-bottom: solid grey 2px;
    
}

.secao-meuportifolio h2{
    padding-top: 1em;
}

/* INICIO CARDS */

h1{
    font-family: 'Courier New', Courier, monospace;
}

.texto-cards{
    font-family: 'Lobster Two', cursive;
    font-size: 18px;
    height: 90px;
}

.efeito-card:hover{
    -moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
    transform: scale(1.05);
    transition: 500ms;
    border: 2px solid red;
}

.botao-fechar{
    font-family: 'Lobster Two', cursive;
    border-color: grey; 
}

.fundo-card{
    background-color: black;
    height: 35vh;
}

.tamanho-cards{
    max-height: 400px;
}

/* TÉRMINO CARDS */

.secao-meuportifolio .grid{
    margin-top: 5em;
    display: grid;
    gap: 2em;
    justify-content: center;
}

@media(min-width: 0px){
    .secao-meuportifolio .grid{
        margin-left: 1.6em;
        
    }

}

@media(min-width: 840px){
    .secao-meuportifolio .grid{
        grid-template-columns: repeat(2, 50%);
    }
}
@media(min-width: 1200px){
    .secao-meuportifolio .grid{
        align-content: center;
        grid-template-columns: repeat(3, 30%);
    }
}

.secao-meuportifolio figcaption{
    color: white;
    font-size: 1.3em;
    transform: scale(1);
    text-align: center;
}

.secao-meuportifolio h2{
    color: black;
    text-shadow: 0px 0px 5px grey;
}

.img-tecnologias{
    height: 360;
    object-fit: scale-down;
    transform: scale(1);
    width: 280px;
}


figure:active,
figure:hover{
    transition: 2s;
}

/* TÉRMINO - SEÇÃO IMAGENS */

/* INICIO - SEÇÃO TECNOLOGIAS */
.secao-tecnologias{
    background-image: linear-gradient(black, white);
    max-width: 100vw;
    min-height: 100vh;
    padding: 2em;
    text-align: center;
}

.secao-tecnologias h2{
    padding-top: 1em;
}

/* TÉRMINO - SEÇÃO PORTIFÓLIO */

/* INICIO DA SECAO DE CONTATO */

.secao-contato{
    height: 25vh;
}

.secao-contato h2{
    color: black;
    font-size: 1.5em;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 2em;
}

.secao-contato a{
    color: rgba(34, 31, 31, 0.61);
    font-size: 2em;
    text-align: center;
}

.secao-contato a:hover{
    color: black;
    text-shadow: 0px 0px 20px white;
    transition: 2s;
}

.divisao{
    border-bottom: solid 2px rgba(128, 128, 128, 0.671);
    margin-bottom: 1em;
    margin-left: 20vw;
    margin-right: 20vw;
    margin-top: 1em;
    
}

/*TÉRMINO DA SECAO DE CONTATO */


/* INICIO - RODAPE */

.rodape{
    background-color: #4b5965;
    height: 5vh;
    margin-top: 0;
    width: 100%;
}

.texto-rodape{
    font-size: 1em;
}

/* TÉRMINO DO RODAPÉ */


/* INICIO DE AJUSTE DE FONTES */

@media(min-width: 0px){
    .site-title,h1{
        font-size: 1.3em;
        text-shadow: 0px 0px 2px white;
    }

    .site-subtitle,h2{
        font-size: 1em;
        text-shadow: 0px 0px 1px white;
    }

    h1{

        text-shadow: 0px 0px 10px white;
    }
    
    h2{
        text-shadow: 0px 0px 5px white;
        font-style: italic;
        
    }
}

@media(min-width: 0px){
    .site-title,h1{
        font-size: 1em;
    }

    .site-subtitle,h2{
        font-size: 1em;
    }

    .secao-contato h2{
        font-size: 1.2em;
    }

    .secao-sobre img{
        clip-path: circle(50%);
        border-radius: 50%;
    }

    .texto-rodape{
        font-size: 0.8em;
    }
}    

@media(min-width: 500px){
    .site-title,h1{
        font-size: 1.5em;
    }

    .site-subtitle,h2{
        font-size: 1.3em;
    }

    .secao-sobre img{
        clip-path: circle(50%);
        border-radius: 50%;
    }
}

@media(min-width: 600px){
    .site-title,h1{
        font-size: 2em;
    }

    .site-subtitle,h2{
        font-size: 1.7em;
    }

    .secao-sobre img{
        clip-path: none;
        clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
    }

}


@media(min-width: 700px){
    .site-title,h1{
        font-size: 2.5em;
    }

    .site-subtitle,h2{
        font-size: 2.2em;
    }
}


@media(min-width: 800px){
    .site-title,h1{
        font-size: 3em;
    }

    .site-subtitle,h2{
        font-size: 2.7em;
    }
}

@media(min-width: 900px){
    .site-title,h1{
        font-size: 3.5em;
    }

    .site-subtitle,h2{
        font-size: 3.2em;
    }
}

@media(min-width: 1000px){ /* 1000 */
    .site-title,h1{
        font-size: 4em;
    }

    .site-subtitle,h2{
        font-size: 3.7em;
    }
}

@media(min-width: 1200px){  /* 1000 */
    .site-title,h1{
        font-size: 4em;
    }

    .site-subtitle,h2{
        font-size: 3em;
    }

/* TÉRMINO DE AJUSTE DE FONTES */
