body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.valfooter {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    background: black;
    color: white;
    margin-top: 2rem;
}


.valfooter-top {
    display: flex;
    flex-direction: column;
    gap: 20rem;
}

@media (min-width: 768px) {
    .valfooter-top {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .valfooter-top {
        flex-direction: row;
    }
}

@media (min-width: 1200px) {
    .valfooter-top {
        flex-direction: row;
    }
}


.valfooter-brand {
    color: white;
    font-size: 5rem;
    font-weight: bolder;
    letter-spacing: -2px;
    text-shadow: 2px 2px 0px #f4eeee;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
    margin-left: 1rem;
}


.valfooter-fastlinks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.valfooter-flt {
    color: white;
    font-size: 1.5rem;
}

.valfooter-link {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    cursor: pointer;
    color: white;
}


.valfooter-link:hover {
    color: gold;
}

.valfooter-bottom {
    text-align: center;
    font-size: 1rem;
}


hr {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, gold, transparent);
    border: none;
    margin: 4rem auto;
    align-self: center;
}