*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body{
    --background: #181818;
    --text:#FFFFFF;
    --text-green: #52b788;
}



/* incio header */



.header{
   display: flex;
   flex-direction: row;
   background-color: var(--background);
   width: 100%;
   
    
  
}
.header h1 span {
    color: #52b788;
}

.header h1{
    margin-left: 10%;
    font-size: 35px;
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu{
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.menu a {
    margin: 0 15px;
    color: var(--text);
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    transition: 0.7s;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #52b788;
    transition: width 0.4s cubic-bezier(.77,0,.18,1);
}

.menu a:hover::after {
    width: 100%;
}

/*  Inicio Intro   */

.Container-intro {
    display: flex;
    flex-direction: row-reverse;
    height: 100vh;
    text-align:left;
    padding: 100px 20%;
    background-color: var(--background);
    width: 100%;
    
}   

.profile-image {
    margin-right: 40px;
    width: 400px;
    height: 440px;
    border-radius: 100px;
    margin-top: 15%;
    box-shadow: #52b788 0px 2px 10px;
}

.text{
    font-size: 17px;
    color: var(--text);
    margin-left: 20px;
    margin-top: 15%;
    
}

.text a{
    color: var(--text);
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border:solid #52b788;
    color: var(--text-green);
    padding: 15px 15px;
    
}
.text a{ 
    transition: 1s;
}

.text a:hover{
        background-color: #52b788;
        color: var(--text);
        
    }

.text h2{
    margin-bottom: 10px;
    font-size: 20px;
    color: #2d6a4f;
}
.text h1{
    color: #52b788;
    font-size: 40px;
    margin-bottom: 20px;
}

.text p{
    margin-bottom: 40px;
    
}


/* inicio about */


.Container-about {
   display: flex;
   flex-direction: column;
    background-color: var(--background);
    padding: 30px 20%;
    height: 90vh;
    text-align: left;
}

.Container-about p {
    margin-top: 30px;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
}
.Container-about h2 {
    color: #52b788;
    font-size: 50px;
}


/* inicio skills */


.Container-skills {
    display: flex;
    flex-direction: column;
    background-color: var(--background);
    padding: 30px 20%;
    height: 30vh;
    text-align: left;
    width: 100%;
}
.Container-skills h2 {
    color:var(--text-green);
    font-size: 30px;
}


.image-logo{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 20%;
    
    
}
.image-logo img {
    width: 70px;
    margin-right: 70px;
    transition: 1.10s;
    position: relative;
    
}

.image-logo img:hover{
    transform: scale(1.20);
  
}

/* inicio projetos */

.Container-projets {
    display: flex;
    flex-direction: column;
    background-color: var(--background);
    padding: 30px 20%;
    height: 50vh;
    text-align: left;
    width: 100%;
}
.Container-projets h2 {
    color:var(--text-green);
    font-size: 30px;
}


/* incio contato */


.Container-contato{
   display: flex;
   flex-direction: column;
   justify-content: center;
    align-items: center;
    height: 20vh;
    background-color: var(--background);
       
}
.Container-contato h1 {
    font-size: 30px;
    color: var(--text-green);
    font-weight: bold;
    
}

.Container-contato p {
    margin-top: 20px;
    color: var(--text);
    
}  

.redes-sociais {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;  
}
.redes-sociais a {
    color: #FFFFFF;
    text-decoration: none;
    background-color: #000000;
    border-radius: 5px;
    padding: 10px 20px;
    transition: 0.3s;
}

.redes-sociais img{
    width: 20px;
}

.redes-sociais a:hover{
    transform:scale(1.07)
}


/* inicio footer */


.Container-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--background);
    color: #FFFFFF;
    padding: 30px 0;
    width: 100%;
}
.Container-footer h2 span {
    color: #52b788;
}
.Container-footer h2 {
    margin-right: 10px;
    font-size: 25px;
}


/*Media queries*/

@media (max-width: 1024px) {
    .header h1 {
        font-size: 25px;
    }
    
    .menu a {
        font-size: 17px;
        margin: 0 10px;
    }
    
    .Container-intro {
        flex-direction: column;
        padding: 20px;
    }
    
    .Container-intro h1 {
        font-size: 24px;
    }
    
    .Container-about h2 {
    font-size: 40px;
    }

    .profile-image {
        width: 400px;
        height: 400px;
        margin-top: 5%;
        margin-left: 10%;
    }
    
    .text {
        font-size: 14px;
    }
    
    .text a {
        font-size: 18px;
        padding: 8px 16px;
    }
    .Container-about, .Container-skills, .Container-projets {
        padding: 20px;
        height: auto;
    }
    .image-logo {
        
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-left: 20%;
    }
    .image-logo img {
    width: 60px;
    margin-right: 30px;
    
    }
}

@media (max-width: 500px) {
    .header h1 {
        font-size:15px;
    }
    
    .menu a {
        font-size: 14px;
        margin: 0 5px;
    }
    
    .Container-intro {
        padding: 10px;
    }
    
    .Container-intro h1 {
        font-size: 20px;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
        margin-top: 10%;
    }
    
    .text {
        font-size: 10px;
    }
    
    .text a {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .Container-about, .Container-skills, .Container-projets {
        padding: 15px;
        height: auto;
    }
    
    .image-logo img {
        width: 25px;
        margin-right: 10px;
    }
}