body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background: #ffffff;
    padding: 24px;
}

.construction-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-card {
    max-width: 620px;
    width: 100%;

    background: #FFC556;
    border-radius: 18px;

    padding: 64px 48px;

    text-align: center;

    box-shadow:
        0 10px 40px rgba(0,0,0,.05);
}

.logo {
    width: 260px;
    max-width: 80%;
    margin-bottom: 40px;
}

h1 {
    font-family: RethinkSans-Medium, sans-serif;
    font-size: 2rem;
    color: #101010;
    margin-bottom: 24px;
    line-height: 1.2;
}

p {
    font-family: Geist-Regular, sans-serif;
    font-size: 1.05rem;
    color: #5b5b5b;
    line-height: 1.2;
    max-width: 470px;
    margin: 0 auto 18px;
}

@media (max-width: 640px) {

    .construction-card {
        padding: 42px 28px;
    }

    .logo {
        width: 200px;
        margin-bottom: 32px;
    }

    h1 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1rem;
    }

}
