*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:#f4f4f4;
    overflow:hidden;
    position:relative;
}

/* Background */
body::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:
        linear-gradient(
            rgba(255,255,255,0.85),
            rgba(255,255,255,0.85)
        ),
        url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b');
    background-size:cover;
    background-position:center;
    filter:grayscale(100%);
    z-index:-2;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.4);
    backdrop-filter:blur(2px);
    z-index:-1;
}

.container{
    max-width:900px;
    width:90%;
}

.logo{
    max-width:350px;
    width:100%;
    margin-bottom:20px;
}

h1{
    font-size:72px;
    font-weight:900;
    color:#111;
    margin-bottom:20px;
}

.divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:25px;
}

.divider span{
    width:120px;
    height:1px;
    background:#888;
}

.divider p{
    font-size:24px;
    font-weight:600;
    letter-spacing:2px;
    color:#222;
}

.description{
    font-size:24px;
    line-height:1.8;
    color:#333;
    margin-bottom:50px;
}

.follow-btn{
    display:inline-block;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:10px;
    font-size:22px;
    font-weight:700;
    transition:0.3s;
}

.follow-btn:hover{
    transform:translateY(-3px);
}

.social-icons{
    margin-top:30px;
}

.social-icons a{
    color:#111;
    font-size:38px;
    margin:0 15px;
    transition:0.3s;
}

.social-icons a:hover{
    transform:translateY(-5px);
}

@media(max-width:768px){

    h1{
        font-size:45px;
    }

    .divider{
        flex-direction:column;
        gap:10px;
    }

    .divider span{
        width:80px;
    }

    .divider p{
        font-size:18px;
    }

    .description{
        font-size:18px;
    }

    .logo{
        max-width:250px;
    }
}