*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html,
body {
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url('assets/imagen-cordillera.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #ffff;
    background-color: #ffffff;
    padding: 1rem;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 2 1 auto;
}

.logo__icon {
    width: 100%;
    max-width: 27rem;
    height: auto;
}

.mensaje-contruccion {
    text-align: center;
    flex: 5 1 auto;
}

.mensaje__header {
    font-size: calc(1.375rem + 1.375vw);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    margin-top: 6.5rem;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 5vh 0;
}

.mensaje__info {
    font-size: 1.25rem;
    font-weight: 300;
}

.mensaje__redes {
    font-size: 0.875rem;
    margin-top: 10vh;
}

.mensaje__social {
    margin-top: 5vh;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.copyright {
    border-top: 1px solid rgba(108, 117, 125, 0.25);
    text-align: center;
    font-size: 0.875rem;
    padding-top: 1rem;
    flex: 0 0 auto;
}