@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap');


* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}



body {

    height: 100vh;

    overflow: hidden;

    font-family: Inter, Arial, sans-serif;

    color: white;

    background: #000000;

    display: flex;

    justify-content: center;

    align-items: center;

}



/* TECHNOLOGY BACKGROUND */


.background {

    position: absolute;

    inset: 0;


    background:

        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),

        radial-gradient(
            circle at center,
            #111111,
            #000000 70%
        );


    background-size:

        70px 70px,
        70px 70px,
        100% 100%;


}



/* CENTER CONTENT */


.content {

    position: relative;

    max-width: 750px;

    padding: 40px;

    text-align: center;

}



/* LOGO */


.logo {

    font-size: 64px;

    font-weight: 700;

    letter-spacing: 8px;

    color: #ffffff;

}



.logo span {

    color: #38bdf8;

}



/* CATEGORY */


.tag {

    margin-top: 15px;

    font-size: 12px;

    letter-spacing: 4px;

    color: #9ca3af;

}



/* TITLE */


h1 {

    margin-top: 55px;

    font-size: 42px;

    font-weight: 600;

    color: #ffffff;

}



/* DESCRIPTION */


p {

    margin: 25px auto 0;

    max-width: 620px;

    font-size: 17px;

    font-weight: 300;

    line-height: 1.8;

    color: #bdbdbd;

}



/* LINE */


.divider {

    width: 70px;

    height: 2px;

    background: #38bdf8;

    margin: 35px auto;

}



/* STATUS */


.status {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 25px;

    border-radius: 30px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.15);

    font-size: 13px;

    color: #d1d5db;

}



.status span {

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow: 0 0 12px #22c55e;

}



/* FOOTER */


footer {

    position: absolute;

    bottom: 25px;

    font-size: 12px;

    color: #666666;

}



/* MOBILE */


@media(max-width:600px) {


    .logo {

        font-size: 40px;

        letter-spacing: 5px;

    }


    h1 {

        font-size: 30px;

    }


    p {

        font-size: 15px;

    }


    .tag {

        letter-spacing: 2px;

    }

}