@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
footer/*estos son los estilos del footer*/{
    background-color: rgb(146, 0, 44);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footertext{
    font-family: "Raleway", sans-serif;
    font-size: 25px;
    font-weight: 700;
    font-style: normal;
    color: #ffabe2;
}
.iconofooter{
    height: 10vh;
    width: auto;
}
.ft_txt{
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    color: #ffabe2;
}
@media only screen and (max-width: 768px)/*estilos del footer cuando la pantalla es más pequeña*/{
    .footertext{
        font-size: 7px;
    }
    .ft_txt{
        font-size: 7px;
    }
    .iconofooter{
        height: 7vh;
    }
}