*{
    margin:0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Roboto', sans-serif;
}

html{
    scroll-behavior: smooth;
}
/* INICIO HEADER*/

.nav{
    background-color: #181818;
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: sticky;
    top: 0;
    z-index: 9;
}

.nav-list{
    display:flex;
    align-items: center;
    list-style: none;
    margin-right: 28px;
}

.nav-list a{
    text-decoration: none;
    color: #DDD;
    padding: 20px;
}

.nav-list a:hover{
    color: #FFFFFF
}

/* FIM HEADER*/

/*INICIO MAIN*/
.main{
    width: 100%;
    background-color: #000;
    height: calc(100vh - 80px);
background-image: url("images/programador.png");
display: flex;
align-items: center;
padding-left: 10%;
}
.main h1{
    color: #FFFFFF;
    font-size: 24px;
}
.main p{
    font-size: 24px;
    font-style: italic;
    color:#1e96fc;
    margin-top: 10px;
    margin-bottom: 35px;
}

.call-to{
    cursor: pointer;
    background-color: #FFF;
    border: 0;
    padding: 14px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.9s;
}
.call-to:hover{
    transform: scale(1.1);
}
.main a{
    text-decoration: none;
    color: #181818;
}
/*FIM MAIN*/

/*Inicio SOBRE*/
.sobre{
    background-color: #FFFFFF;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 80px;
    padding-bottom: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sobre div{
    max-width: 50%;
    padding-right: 40px;
    text-align: justify;
}

.sobre img{
    max-width: 450px;
    border-radius: 8px;

}


/*INICIO PROJETOS*/

.projects{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 80px;
    padding-right: 80px;
}

.projects h2{
    font-size: 32px;
    margin-bottom: 8px;
    margin-top: 20;
}

.projects p{
    margin-bottom: 40px;
    font-style: italic;
}

.projects-list{
    width: 100%;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projects img{
    width: 32%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    opacity: 0.8;
    transition: 0.9s;
}

.projects img:hover{
    opacity: 1;
}

.action{
    background-color: #181818;
    border: 0;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 18px;
    cursor: pointer;
}


/*FIM PROJETOS*/


/*INICIO RODAPE */

.rodape {
    width: 100%;
    background-color: #181818;
    padding: 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    margin-top: 24px;
}

.rodape a {
    text-decoration: none;
    color: #FFFFFF;
}

.rodape p {
    margin-left: 12px;
}