/*Importando arquivos estilos */
@import "./dark-mode.css";
@import "./projetos.css";


*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
  
img{
    display: block;
    max-width: 100%;
}

:root{

  --bg: #fff;
  --bg-panel: #ebebeb;
  --color-headings: #0077FF;
  --color-text: #000;
  --branco: #fff;
  --zinza: #aeaeae;
  --azul: #4070f4;

}
    
body{
    font-family: "Source Code Pro", monospace;
    background-color: var(--bg);
    display: grid;
    align-items: center;
    justify-items: center;
    color: var(--color-text);
    height: 100vh;
}
    
.container{
    padding: 0 16px;
}

.title{
    font-size: 36px;
    font-weight: normal;
}
  
.profile{
    max-width: 452px;
    margin: 0 auto;
}
  
.box{
    background-color: var(--bg-panel);
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 8rem;
}
  
.profile-pic{
    border-radius: 50%;
    margin: 0 auto 2rem auto;
}
  
.profile span{
    font-size: 24px;
}
  
.profile p{
    font-size: 18px;
    margin-top: 2rem;
    margin-bottom: 4rem;
}
  
.redes-sociais{
    display: flex;
    justify-content: center;
}
  
.redes-sociais li{
    margin-right: 1rem;
}

.redes-sociais li a{
    font-size: 40px;
    color: var(--zinza);
}
  
/*Portifolio*/

.portfolio {
    max-width: 886px;
}
  
.portfolio ul {
    margin-top: 3rem;
}
  
.portfolio li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 1rem;
}
  
.portfolio li + li {
    margin-top: 2rem;
}
  
.portfolio img {
    border-radius: 10px;
}
  
.portfolio h2 {
    font-weight: normal;
    margin-bottom: 1rem;
    text-decoration: underline;
}

/*Link-github*/
  
.meus-projetos {
    margin-top: 20vh;
    padding-bottom: 20vh;
    text-align: center;
}

.meus-projetos a{
      color: var(--azul);
      font-size: 24px;
}

.meus-projetos a:hover{
    text-decoration: underline;
}
  
@media (max-width: 600px) {
    
  
body{
      background-color: var(--bg);
}

.box{
      padding: 2rem;
      margin-top: 4rem;
      border-radius: 30px;
      background-color: var(--bg-panel);
}

.box:first-child{
      padding: 3rem;
}
    
.portfolio ul{
      margin-top: 1rem;
}
    
.portfolio li{
      grid-template-columns: 1fr;
      justify-items: center;
}

.portfolio li div{
      max-width: 448px;
}
    
.meus-projetos{
      font-size: 18px;
      text-shadow: none;
      margin: 0;
      padding: 4rem 0;
    
}

}

  