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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    min-height: 100vh;
    color: #707070;
    overflow-x: hidden;

    background-image: url('bg-desktop.jpg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero {
    text-align: center;
}

.logo {
    width: 340px;
    max-width: 90%;
    height: auto;
}

.status {
    margin-top: 90px;
    font-size: 13pt;
    font-weight: 300;
    color: #707070;
}

.info-grid {
    margin-top: 90px;
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 50px;
    justify-content: center;
    align-items: start;
}

.column {
    font-size: 13pt;
    line-height: 1.35;
}

.column p {
    margin-bottom: 2px;
}

.gray {
    color: #707070;
    font-weight: 300;
}

.orange {
    color: #E65221;
    font-weight: 500;
}

.yellow {
    color: #F7B234;
    font-weight: 400;
}

/* MOBILE */

@media (max-width: 768px) {
    body {
        background-image: url('bg-mobile.jpg');
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: cover;
    }

    .wrapper {
        justify-content: flex-start;
        padding: 95px 35px 25px;
    }

    .logo {
        width: 220px;
    }

    .status {
        display: none;
    }

    .info-grid {
        width: 100%;
        max-width: 240px;
        margin-top: 80px;

        display: flex;
        flex-direction: column;
        gap: 22px;
        align-items: center;
        text-align: center;
    }

    .column {
        width: 100%;
        font-size: 13pt;
        line-height: 1.5;
        letter-spacing: -0.01em;
    }

    .column p {
        margin: 0;
        padding: 0;
    }

    .gray {
        font-weight: 300;
    }

    .orange {
        font-weight: 500;
    }

    .yellow {
        font-size: 12pt;
        line-height: 1.1;
    }
}