@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap');
/*Configurando o a pagina para configuração profissional */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}
/*Personalizando o body para deixar os componentes principais centralizados */
body{
    overflow-x: hidden;
    display: flex;
    justify-content:center;
    align-items: center;
    padding: 15px;
    background-color: #f2f0ee;

}
/* O main é o painel principal que está apresentado */
main{
background-color: aliceblue;
min-height: 70vh;
width: 50%;
box-shadow: 6px 4px 4px 4px rgb(146, 141, 141);
display: flex;
justify-content:start;
border-radius: 21px;
margin-top: 8%;
padding: 10px;
align-items:center;
flex-direction: column;
}
/* Nessa parte tera todo conteudo do Main tirando as barra de contato */
.tudo{
    display: flex;
    justify-content:space-between;
    width: 100%;
    margin-top: 10%;
    padding: 10px;
}
/* No componente de span está a parte de projetos que é oranizado por uma lista  */
.tudo>span>ul li {
    list-style: none;
    font-size: 20px;
    color: black;
    margin-top: 5px;
}
.tudo>span>ul li>a{
    color: rgb(44, 41, 41);
}
/*Componente de contatos é parte que guarda meus links para contato  */
#contatos{
   
    display: flex;
    border-radius: 21px;
    background-color: rgb(238, 233, 233);
    width: 100px;
    justify-content: center;
    
    
}
#contatos>a img{
    height: 25px;
    width:25px;
    margin-left:5px;
}
section>h2{
    margin-top: 30px;
}
.agende{
    font-family: 'Roboto Mono', monospace;
    height: 50px;
    width: 100px;
    border-radius:35%;
    border: 0;
    border-radius: 24px;
    margin-top:35px;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
    font-weight: bold;
}
/* O componente conflut é uma div flutuante que guarda os links para meus contatos*/
.conflut{
    display: flex;
    border-radius: 21px;
    z-index: 1000;
    padding: 4px;
    border: 0.5px solid black;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    left: 8px;
    top: 50%;
}
.conflut>a img{
    height: 30px;
    width: 30px;
    margin-top: 5px;
}

/*Responsivo   */

/* Laptop M : Esse laptop tem uma largura de 1440px  */
@media only screen and (max-width:1440px) {
    main{
        width:60%;
    
    }
}
@media only screen and (max-width:1186px) {
    main{
        width: 75%;

        
    }
    .tudo{
        padding: 4px;
    }
}
/* Tablet:768px de largura  */
@media only screen and (max-width:768px){
    main{
        width: 85%;
    }
}
/*Tablet:628px de largura  */
@media only screen and (max-width:629px) {
    main{
        width: 95%;
    }
    .tudo{
        padding: 2px;
    }
    .tudo>span>h2{
        font-size: 23px;
    }
    .tudo>span>ul li{
        font-size: 17px;
    }
    section>h1{
      font-size:23px;
    }
    section>h2{
        font-size: 23px;
    }
    section>p{
        font-size: 15px;
    }
    .conflut{
        left: 80%;
        
      
    }
}
@media  only screen and (max-width:458px){
    main{
        width: 98%;
        height: auto;
    }
    .tudo{
        flex-direction: column;
        
       
        
    }
    
}