:root {
    color-scheme: light;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #dedede;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    height: 100svh;
    margin: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.reconstruction {
    width: 100%;
    min-height: 0;
    flex: 1;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message {
    width: fit-content;
    max-width: 100%;
    text-align: left;
}

h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -0.7px;
    text-transform: uppercase;
}

p {
    margin: 6.4px 0 0;
    font-size: 20px;
    line-height: 1.4;
    max-width: 100%;
}

.logo {
    position: fixed;
    top: 16px;
    left: 24px;
    display: block;
    width: 120px;
    height: auto;
}

.footer {
    flex-shrink: 0;
    padding: 4px 16px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    font-size: 14px;
}

.texto-footer {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 384px) {
    .reconstruction {
        padding: 20px;
    }

    .logo {
        top: 20px;
        left: 20px;
        width: 48px;
    }

    h1 {
        font-size: clamp(32px, 10vw, 40px);
    }

    p {
        font-size: 11.2px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .message,
    .logo {
        animation: reveal 700ms ease-out both;
    }

    .logo {
        animation-delay: 120ms;
    }
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
