@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
:root{
    --rojo: #9D2449;
}
body{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
h1{
	font-size: 20pt;
	color: var(--rojo);
}
h3{
    margin: 0;
    font-size: 14pt;
}
section{
	padding: 20px 50px;
}
.head {
    background: var(--rojo);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    color: #fff;
}
.center{
	text-align: center;
}
.footer{
    background: #111;
    display: grid;
    grid-template-columns: 15% 60% 15%;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    justify-items: center;
    padding: 20px 50px;
    color: #fff;
}
.footer p{
    font-size: 10pt;
}
.movil{
    display: none;
}
@media (max-width: 820px){
    .movil{
        display: block;
    }
    .desk{
        display: none;
    }
    section, .head {
	    padding: 20px;
	}
	.head img{
		width: 120px;
	}
   
    .footer {
        grid-template-columns: 100%;
        padding: 20px;
        grid-gap: 20px;
    }
}