.titlecontacto{
    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;
}
.titlecontacto img{
    width: 85%;
}
.floating{
    animation: floatY 3s ease-in-out infinite;
    display: inline-block;
}
@keyframes floatY {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}
.titlecontacto h1{
    font-family: "Roboto Condensed", sans-serif;
    font-size: 2.4rem;
    color: black;
}
@media (min-width: 768px) {
    .titlecontacto h1{
        font-size: 3.3rem;
    }
}
@media (min-width: 1200px) {
    .titlecontacto h1{
        font-size: 3.7rem;
    }
}
.titlecontacto p{
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    color: #333333;
}
@media (min-width: 768px) {
    .titlecontacto p{
        font-size: 1.3rem;
    }
}
.sectioncontacto form{
    background-image: url(../img/principal/fondoformulario.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100% !important;
}
@media (min-width: 768px) {
    .sectioncontacto form{
        width: 75% !important;
    }
}
@media (min-width: 1024px) {
    .sectioncontacto form{
        width: 60% !important;
    }
}
.sectioncontacto form legend{
    font-family: 'Roboto Mono';
    color: var(--prussian);
}
.sectioncontacto form label{
    font-family: 'Nunito Sans';
    color: var(--prussian);
}
.sectioncontacto form input, .sectioncontacto form textarea{
    background-color: var(--blancogris);
    resize: none;
}
.sectioncontacto form button{
    font-family: 'Roboto Mono';
    color: var(--blanco);
}