@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: 'Quicksand', 'Roboto Condensed', sans-serif;
}

/* Barra de navegación */
header {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente si das altura */
    height: 80px;
}

.barra-top {
    display: flex;
    gap: 20px;
}

.barra-top a {
    font-size: 18px;
    text-decoration: none;
    color: #000000;
}

.barra-top a:hover {
    color: #2563EB;
}
.logo{
    padding-right: 30px;
}
.logo img{
    width: 64px;
    height: 64px;
}

/* Fin barra de navegación */
