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

html{

    scroll-behavior:smooth;

}

body{

    font-family:Inter,sans-serif;

    background:#090909;

    color:#fff;

    overflow-x:hidden;

    min-height:100vh;

}

.background{

    position:fixed;

    inset:0;

    background:
    radial-gradient(circle at top,#1b1b1b 0%,transparent 55%),
    radial-gradient(circle at bottom,#111 0%,transparent 60%),
    #090909;

    z-index:-2;

}

body::before{

    content:"";

    position:fixed;

    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);

    background-size:40px 40px;

    mask-image:radial-gradient(circle,black 30%,transparent 90%);

    z-index:-1;

}

.container{

    max-width:920px;

    margin:auto;

    padding:90px 25px 40px;

}

.logo{

    width:max-content;

    margin:auto;

    padding:14px 34px;

    border-radius:999px;

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

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

    backdrop-filter:blur(20px);

    letter-spacing:8px;

    font-size:13px;

    color:#cfcfcf;

    transition:.3s;

}

.logo:hover{

    transform:translateY(-2px);

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

}

h1{

    margin-top:70px;

    text-align:center;

    font-size:62px;

    font-weight:700;

}

.subtitle{

    margin-top:16px;

    text-align:center;

    color:#8c8c8c;

    font-size:20px;

}

.letter{

    margin-top:85px;

    padding:50px;

    border-radius:30px;

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

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

    backdrop-filter:blur(25px);

    box-shadow:

    0 0 0 1px rgba(255,255,255,.02),

    0 20px 50px rgba(0,0,0,.35);

}

.letter h2{

    margin-bottom:35px;

    font-size:28px;

    color:#fff;

}

.letter p{

    color:#b8b8b8;

    line-height:2;

    font-size:18px;

}

strong{

    color:#fff;

    font-weight:600;

}

.quotes{

    margin-top:60px;

    display:flex;

    flex-direction:column;

    gap:14px;

    align-items:center;

}

.quotes span{

    color:#707070;

    font-size:15px;

    font-style:italic;

    transition:.3s;

}

.quotes span:hover{

    color:#bdbdbd;

}

footer{

    max-width:920px;

    margin:70px auto 35px;

    padding:0 25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#666;

    font-size:15px;

}

footer a{

    color:#8f8f8f;

    text-decoration:none;

    transition:.3s;

}

footer a:hover{

    color:#fff;

}

@media(max-width:768px){

    h1{

        font-size:42px;

    }

    .subtitle{

        font-size:17px;

    }

    .letter{

        padding:30px;

    }

    .letter p{

        font-size:16px;

    }

    footer{

        flex-direction:column;

        gap:18px;

        text-align:center;

    }

}
