@charset "UTF-8";
/* CSS Document */

/* Reset básico */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #AFADC3; /* Cambia este color por el que desees */
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

/* Contenedor principal */

.contenedor {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Logotipo */

.logo {
    width: min(40vw, 320px);
    height: auto;
}

/* Pie de página */

.pie {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.pie a {
    color: inherit;
    text-decoration: none;
}

.pie a:hover {
    text-decoration: underline;
}

.pie span {
    margin: 0 0.75rem;
    opacity: 0.5;
}