body {
    background-image: url("/assets/media/Bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 95vh;
}

.title {
    text-align: center;
    font-size: 6vw;
}

.subtitle {
    font-size: 3vw;
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    width: fit-content;
    border-top: 3px solid white;
}

@media (max-width: 768px) {
    .title {
        font-size: 7vw;
    }
    .subtitle {
        font-size: 4vw;
    }
}
@media (min-width: 1200px) {
    .title {
        font-size: 5vw;
    }
    .subtitle {
        font-size: 2vw;
    }
}

.secc_text {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer {
    display: flex;
    justify-content: space-evenly;
    width: 60%;
    margin-bottom: 30px;
}
.direccion {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    letter-spacing: 0.025em;
    font-weight: 100;
    font-style: italic;
}

@media (max-width: 883px) {
    .footer {
        width: 100%;
    }
}







@media (max-width: 473px) {
    .footer>div {
        display: grid;
        justify-content: center;
        width: 100%;
    }
}