body{
    background-color: #22212C;
    color: #837E9F;
    font-family: 'Merriweather Sans', sans-serif;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    
}
aside{
    margin:40px 60px 58px 40px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    background-color: #302F3D;
    border-radius: 20px;
    width: 348px;
    height: auto;
    display: flex;
    flex-direction: column;
    
}

#profile-container {
    margin-top: 32px;
    margin-bottom: 49px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 30px;
}


#profile-container img {
    width: 128px;
    height: 128px;
    border-radius: 100%;
    border: 1px solid #00ff00;
}
#profile-container ul{
    display: flex;
    flex-direction: column;
    align-items: center;    
}

#links-container {
    margin: 34px 0;
   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
#links-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}
#links-list li {
    display: flex;
    flex-direction: row;
    gap:20px;
    
}
#links-list li a{
    display: flex;
    flex-direction: row;
    gap:20px;
    
}

#technologies-container {
    margin:30px 0;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

#technologies-container h3 {
    padding: 0 207px 20px 20px ;
}
    
#technologies-container ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
#technologies-container ul li{
    color: #000;
    background-color: #cb92b1;
    border-radius: 30px;
    width: 86px;
    height:24px;
    
    font-size: 12px;
    font-weight: 700;
   
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}
#technologies-container ul li:hover{
    color: red;
    background-color: #c27ba2;
    cursor: pointer;
    transition: 0.5s all ease-in-out;
    transform: scale(1.1);
    
}

#experiences-container {
    
    display: flex;
    flex-direction: column;
  
    
}

#experiences-container h3 {
    padding: 30px 207px 20px 20px ;
    size: 20px;
    font-weight: 700;
}
#education-container h3 {
    padding: 30px 207px 20px 20px ;
    size: 20px;
    font-weight: 700;
}
.list{
    display: flex;
    flex-direction:column;
    align-items:flex-start;
    gap: 15px;
    padding: 20px 0 30px 40px ;
}
    
.list ul li{
    list-style-type:disc;
    text-transform: uppercase;
    
}
.list ul p{
    padding: 0 20px 0 15px;
    
}

.container-large{
    margin:40px 40px 31px 0;
    width: 800px;
    height: 86px;
    background-color: #302F3D;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#projects-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 800px;
    padding: 30px;
}
#projects{
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 40px 30px 0;
    gap: 30px;
    
}
.last-projects{
    max-width: 461px;
    height: 186px;

    background-color: #302F3D;
    border-radius: 20px;

    display: flex;
    flex-direction:column;
    

}

.last-projects a{
    display: flex;
    flex-direction: column;
    gap: 16px;
    
}

.last-projects h4{
    padding: 30px 30px 0;
    display: flex;
    gap: 16px;
}

.last-projects p{
    padding: 0 30px;}

#project-footer {
    padding:0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#branch{
    
    gap: 8px;
    display: flex;
    align-items: center;
}
#branch p {
    display: flex;
    gap: 3px;
}
#projects-tecnology{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    
}
#projects-tecnology p{

    display: flex;
    gap: 3px;
}

footer{
    align-items: center;
    text-align: center;
    display: block ;
    bottom: 0;
    left: 0;
}

footer hr{
    width: 98.69vw;
}


