.titleabout{
    min-height: 35rem;
    background-image: 
        linear-gradient(to bottom, rgba(250, 250, 250, 0) 75%, #fafafa 100%),
        url(../img/triangle-mosaic.webp);
    background-repeat: repeat;
}
.titleabout img{
    width: 85%;
}
.rotating{
    animation: swing 3s ease-in-out infinite;
    display: inline-block;
    transform-origin: center center; /* Punto de rotación al centro */
}
@keyframes swing {
    0%   { transform: rotate(-10deg); }
    50%  { transform: rotate(10deg); }
    100% { transform: rotate(-10deg); }
}
.titleabout h1{
    font-family: "Roboto Condensed", sans-serif;
    font-size: 2.4rem;
    color: black;
}
@media (min-width: 768px) {
    .titleabout h1{
        font-size: 3.3rem;
    }
}
@media (min-width: 1200px) {
    .titleabout h1{
        font-size: 3.7rem;
    }
}
.titleabout p{
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    color: #333333;
}
@media (min-width: 768px) {
    .titleabout p{
        font-size: 1.3rem;
    }
}
.sectionformacion h2, .sectionformacion h3, .sectionformacion p,
.sectiongustos h2, .sectiongustos h3, .sectiongustos p,
.sectionskills h2, .sectionskills h3, .sectionskills p{
    color: var(--prussian);
}
.sectionformacion h2, .sectionformacion h3,
.sectiongustos h2, .sectiongustos h3,
.sectionskills h2, .sectionskills h3{
    font-family: 'Roboto Mono';
}
.sectionformacion p, .sectiongustos p, .sectionskills p{
    font-family: 'Nunito Sans';
}
.sectionskills .card{
    background-color: var(--blancogris);
}
.sectionskills .card img{
    width: 15%;
}