html, body {
    width: 100%;
    height: max-content;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-family: 'IBM Plex Mono', monospace;
    position: relative;
   
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: center;
    flex-direction: column;
    background-color: #ffb703;
}

.image-container {
    width: 350px; 
    height: 350px; 
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 15px solid #000;
}

.myself {
    width: 450px; 
    height: 450px;
    image-rendering: pixelated;
}

h1 {
    margin-top: 30px; 
    font-size: 40px; 
    font-weight: bold;
    overflow: hidden; 
    white-space: nowrap; 
    border-right: 2px solid transparent; 
    animation: typing 3s steps(27);
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 57%;
    }
}

.navbar {
    padding: 10px 0;
    text-align: center;
    font-size: 25px; 
    font-weight: bold;
    display: flex;
    font-family: 'IBM Plex Mono', monospace;
}

.navbar a {
    margin-right: 25px; 
    transition: color 0.2s;
    color: #000; 
    text-decoration: none;
}


.navbar span{
    margin-right: 25px; 
}

.navbar a:hover {
    color: #2a9d8f; 
    cursor: pointer;
}

.nova-secao {
    width: 100%;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-around;
    background-color: #2a9d8f;
}

.image-newSection {
   padding-top: 40px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.skill-me {
    width: 250px; 
    height: 250px;
    image-rendering: pixelated;
}

.image-skill{
    width: 100px;
    height: 90px;
}

.skills-description {
    width: 50%;
    font-size: 30px;
    color: #fff;
   
}

.skills-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(2, auto); 
    gap: 20px; 
}
.list-skill {
    text-align: center;
}

.image-skill {
    max-width: 100%;
}
.newSection-description{
    width: 50%;
    font-size: 30px;
    color: #fff;
}

h2 {
    color: #e9c46a;
}

.list-header {
    font-weight: bold;
    margin-bottom: 20px;
}

.list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; 
    max-width: 500px; 
    
}

.list li {
    flex-basis: calc(33.33% - 10px); 
    padding: 10px; 
    border-radius: 5px; 
    color: #fff; 
   }

.footer {
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-around;
    background-color: #e76f51 ;
    color: #fff; 
}

i{
    font-size: 60px;
}

i:hover{
    cursor: pointer;
}

a{
    color: #fff; 
}