/*Colors*/
:root{
    --white: #e0fbac;
    --black: rgb(27, 123, 124);
    --primary: rgba(34,193,195,1);
    --secondary: rgba(165,250,83,1);
}
html {
    box-sizing: border-box;
    font-size: 62.5%; 
}

*, *:before, *:after {
    box-sizing: inherit;
}
body{
    font-size: 1.5rem;
    background: var(--primary);
    background: linear-gradient(0deg, var(--primary) 0%, var(--secondary) 100%);
    font-family: Lato, Arial, Helvetica, sans-serif;
}
h1{
    font-size: 3.8rem;
}
h2{
    font-size: 2.8rem;
}
a:hover{
    cursor: pointer;
}
p{
    text-align: justify;
}
a{
    all: unset;
}
.div__container--big{
    width: 90%;
    margin: 0 auto;
}
.div__container--small{
    width: 70%;
    margin: 0 auto;
}

.header__title{
    font-weight: 800;
    margin: 1rem 1rem;
    font-size: 2.5rem;
}
.header__subtitle{
    font-weight: 800;
    font-size: 1.5rem;
}
.nav__principal{
    display: flex;
    flex-direction: column;
}
.nav__link{
    all: unset;
    text-align: center;
    padding: 1rem;
    font-size: 2rem;
}
.nav__link:hover{
    background-color: #22c1c3;
    color: white;
}

@media (min-width: 768px){
    .nav__principal{
        flex-direction: row;
    }
    .nav__link{
        padding: 1.5rem 3rem;
        font-size: 1.2rem;
        margin-left: 1rem;
        font-weight: bold;
    }
    .nav__upslide{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    
}


.div__container--image{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.img__autor{
    width: 300px;
    height: auto;
    clip-path: circle(40%);
}


    
.div__container--table{
    display: flex;
    justify-content: center;
}
th{
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    padding: 1.5rem;
}
td{
    padding: .5rem 5rem;
    text-align: center;
}


.article__project{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.img__project{
    width: 280px;
}
.container__info{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.project__link{
    all: unset;
    padding: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}
.project__link:hover{
    cursor: pointer;
    background-color: var(--secondary);
    border-radius: 1rem;
}
svg{
    height: 2.5rem;
    max-width: 4rem;
}


@media (min-width: 768px){
    .article__project{
        width: 70%;
        display: flex;
        flex-direction: row;
    }
    .div__projects{
        display: flex;
        justify-content: center;
    }
    .container__info{
        margin-left: 2rem;
    }
    .project__name{
        margin: .5rem;
    }
    .project__text{
        margin: 1rem;
    }
}
.div__contact{
    margin-bottom: 8rem;
}
.a__email{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2.8rem;
    text-decoration: underline;
}
.container__footer{
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    text-align: center;
}
.svg__contact{
    height: 4rem;
    max-width: 5rem;
    padding: .5rem;
}
@media(min-width: 768px){
    .svg__contact{
        height: 4rem;
        max-width: 5rem;
        padding: 2rem;
    }
    .container__footer{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}