html {
    background: #eeeeee;
    --yellow: #FECE15;
    --sat: env(safe-area-inset-top);
    --sar: env(safe-area-inset-right);
    --sab: env(safe-area-inset-bottom);
    --sal: env(safe-area-inset-left);
    touch-action: pan-x pan-y;
    font-family: monospace;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: 20px;
}

.wrapper {
    margin: var(--sat) var(--sar) var(--sab) var(--sal);

    display: flex;
    flex-direction: column;
    background: #fefefe;
    border-radius: 10px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}

main {
    padding: 20px 30px;
}

footer {
    border-top: 1px solid #f2f2f2;
    padding: 20px 30px;
}

h1 {
    margin-bottom: 1rem;
}

p {
    margin: 0.5rem 0;
}

p:last-child {
    margin: 0;
}

.under-construction-wrapper {
    pointer-events: none;
    opacity: 0.99999;
}
.under-construction {
    position: fixed;
    transform-origin: center;
    background: repeating-linear-gradient(
            -45deg,
            var(--yellow),
            var(--yellow) 20px,
            black 20px,
            black 40px
    );
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.under-construction:nth-child(1) {
    top: 20px;
    right: -800px;
    transform: rotate(30deg);
    height: 30px;
    width: 2000px;
    z-index: 10;
}
.under-construction:nth-child(2) {
    top: 20px;
    right: -720px;
    transform: rotate(10deg);
    height: 30px;
    width: 2000px;
    z-index: 20;
}
.under-construction:nth-child(3) {
    top: 0;
    right: -900px;
    transform: rotate(15deg);
    height: 30px;
    width: 2000px;
    z-index: 30;
}
.under-construction:nth-child(4) {
    bottom: 20px;
    left: -800px;
    transform: rotate(30deg);
    height: 30px;
    width: 2000px;
    z-index: 10;
}
.under-construction:nth-child(5) {
    bottom: 20px;
    left: -720px;
    transform: rotate(10deg);
    height: 30px;
    width: 2000px;
    z-index: 20;
}
.under-construction:nth-child(6) {
    bottom: 0;
    left: -900px;
    transform: rotate(15deg);
    height: 30px;
    width: 2000px;
    z-index: 0;
}

@media only screen
and (max-width: 600px){

    body {
        padding: 10px;
    }

    main {
        padding: 20px 10px;
    }

    footer {

        padding: 20px 10px;
    }
}