body{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
}

svg:hover {
    rotate: 360deg;
  }
  svg {
    transition: width 1s, height 1s, background-color 1s, rotate 1s;
  }

.links{
    list-style-type: none;
    display: flex;
    gap: 40px
}

.cat{
    height: 400px;
    width: 400px;
    border-radius: 500px;
    border: 5px solid #000000;
}

.cat:hover{
    rotate: 360deg;
    border-radius: 500px;
    border: 5px solid #000000;
    }
    .cat{
    transition: width 1s, height 1s, background-color 1s, rotate 1s;
    }

li{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e5e7eb;   
}

.header, .banner, .footer{
    display: flex;
    align-items: center;
    background-color: #1d1d1d;
}

.header{
    justify-content: space-between;
    padding: 0 10%;
}

.banner{
    justify-content: space-evenly;
    padding: 3% 10%;
}

.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    padding: 5% 0 15% 0;
}

.footer{
    justify-content: center;
    align-items: center;
    color: #e5e7eb0c;
    font-size: 20px;
    padding: 30px 0;
}

.name, .main{
    color: #fefefe;
    font-weight: bold;
}

.name{
    font-size: 25px;
}

.main{
    font-size: 48px;
}

.text{
    color: #e5e7eb;
    padding-right: 30%;  
    text-wrap: wrap;
}

.projects{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 40px;
}

.img-project{
    height: 180px;
    width: 280px;
    border-radius: 5px;
    border: 5px solid #000000;
}

.title-project{
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.text-project{
    margin: 0;
    font-size: 15px;
    color: #e5e7eb;
}

.quote{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8% 15%;
    font-size: 22px;
    font-weight: lighter;
    font-style: italic;
    background-color: #0a0a0a;
    color: white;
}

.autor{
    align-self: flex-end;
    font-style: normal;
    font-weight: bold;
}