@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500&display=swap');

* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #202124;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-weight: 300;
}

.minecraft-lines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: .18;
}

.minecraft-lines::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -70px;
    width: 420px;
    height: 120vh;
    background:
        linear-gradient(
            90deg,
            transparent 0 18%,
            #222 18% 19%,
            transparent 19% 38%,
            #222 38% 39%,
            transparent 39% 58%,
            #222 58% 59%,
            transparent 59% 77%,
            #222 77% 78%,
            transparent 78%
        );
    transform: rotate(7deg);
    opacity: .08;
}

.minecraft-lines::after {
    content: "";
    position: absolute;
    top: -80px;
    left: -70px;
    width: 420px;
    height: 120vh;
    background:
        linear-gradient(
            90deg,
            transparent 0 18%,
            #222 18% 19%,
            transparent 19% 38%,
            #222 38% 39%,
            transparent 39% 58%,
            #222 58% 59%,
            transparent 59% 77%,
            #222 77% 78%,
            transparent 78%
        );
    transform: rotate(-7deg);
    opacity: .08;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 260px;
    height: 260px;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent 0 24%,
            #222 24% 25%,
            transparent 25% 49%,
            #222 49% 50%,
            transparent 50% 74%,
            #222 74% 75%,
            transparent 75%
        ),
        linear-gradient(
            0deg,
            transparent 0 24%,
            #222 24% 25%,
            transparent 25% 49%,
            #222 49% 50%,
            transparent 50% 74%,
            #222 74% 75%,
            transparent 75%
        );
    opacity: .06;
}

body::before {
    top: -35px;
    left: -35px;
    transform: rotate(12deg);
}

body::after {
    right: -35px;
    bottom: -35px;
    transform: rotate(-12deg);
}

.page {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 30px;
    text-align: center;
}

.logo {
    width: 90px;
    height: 90px;
    display: block;
    margin: 0 auto 28px;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

h1 {
    margin: 0;
    color: #202124;
    font-size: clamp(36px, 6vw, 52px);
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.6px;
}

h1 span {
    color: #3eae30;
}

p {
    margin: 12px 0 0;
    color: #777;
    font-size: clamp(18px, 3vw, 22px);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: -0.2px;
}

.line {
    width: 85px;
    height: 2px;
    margin: 17px auto 0;
    background: #3eae30;
    border-radius: 20px;
}

@media (max-width: 600px) {
    .page {
        padding: 22px;
    }

    .logo {
        width: 72px;
        height: 72px;
        margin-bottom: 22px;
    }

    h1 {
        font-size: 36px;
    }

    p {
        font-size: 18px;
    }

    .line {
        width: 70px;
    }

    .minecraft-lines::before,
    .minecraft-lines::after {
        width: 250px;
    }
}

@media (max-width: 380px) {
    .logo {
        width: 64px;
        height: 64px;
    }

    h1 {
        font-size: 32px;
    }

    p {
        font-size: 17px;
    }

    .line {
        width: 62px;
    }
}