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

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    background-color: #050505;
    color: #fff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    line-height: 1.5;
}

.maintenance-page {
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    padding: 48px 24px;
    place-items: center;
    background-image: url("../images/pos-ai-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.maintenance-content {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.maintenance-logo {
    display: block;
    width: 100px;
    height: 100px;
    flex: 0 0 auto;
    object-fit: contain;
}

.maintenance-copy {
    margin-top: 56px;
}

.status-message,
.contact-details {
    margin: 0;
    color: #fff;
    font: inherit;
}

.status-message {
    font-weight: 400;
}

.status-message strong {
    font-weight: 700;
}

.contact-details {
    display: flex;
    margin-top: 16px;
    flex-direction: column;
    font-style: normal;
    font-weight: 400;
}

.contact-details span {
    display: block;
}

.contact-details a {
    color: inherit;
    text-decoration: underline;
    text-decoration-skip-ink: auto;
    text-underline-position: from-font;
}

.contact-details a:hover,
.contact-details a:focus-visible {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

@media (max-width: 640px) {
    .maintenance-page {
        padding-inline: 20px;
    }

    .maintenance-logo {
        width: 88px;
        height: 88px;
    }

    .maintenance-copy {
        margin-top: 40px;
    }

    .status-message {
        max-width: 36ch;
    }

    .contact-details {
        gap: 8px;
    }

    .contact-details span {
        overflow-wrap: anywhere;
    }
}
