/* Navbar */
.navbar {
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
}

.navbar > a {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.navbar__logo {
    width: 100%;
    padding: 5px 10px;
}

.navbar__links {
    display: flex;
    justify-content: space-around;
    margin-bottom: 5px;
}

.navbar__links a {
    width: fit-content;
    color: var(--terciary);
    font-size: 15px;
    font-weight: 500;
    font: var(--fontAnchor);
}

.navbar__links a:hover {
    color: var(--secondary);
}
/* Footer */
footer {
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    color: var(--terciary);
    padding-top: 25px;
    padding-bottom: 0px;
    text-align: center;
}

footer > img {
    width: 50%;
    margin: 0px auto;
}

footer h2 {
    margin-bottom: 0px;
}

.contact {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.contact__info {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0px;
}

.contact__info img {
    width: 25px;
    margin-right: 10px;
}

.contact__info div {
    height: fit-content;
}

.contact__info div * {
    margin: 0px;
}

.contact__info a {
    color: var(--terciary);
}

@media screen and (min-width: 768px) {
    /* Navbar */
    nav {
        height: 15vh;
    }

    .navbar__logo {
        height: 7.5vh;
        padding: 5px 25px;
    }
    /* Footer */
    footer h2 {
        font-size: 50px;
    }

    .contact__info {
        margin: 25px 0px;
    }

    .contact__info img {
        width: 65px;
        margin-right: 25px;
    }

    .contact__info h4 {
        font-size: 30px;
    }
}

/* Pantallas medianas */
@media screen and (min-width: 992px) {
    footer img {
        width: 35%;
    }
}

/* Pantallas grandes */
@media screen and (min-width: 1200px) {
    footer img {
        width: 25%;
    }
}
