*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
    color:#fff;
}

.container{
    width:100%;
    padding:20px;
    text-align:center;
}

.content{
    max-width:600px;
    margin:auto;
    background:rgba(255,255,255,0.08);
    padding:50px 30px;
    border-radius:15px;
    backdrop-filter:blur(8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.content h1{
    font-size:70px;
    margin-bottom:20px;
}

.content h2{
    font-size:40px;
    margin-bottom:20px;
}

.content p{
    font-size:18px;
    line-height:1.6;
    color:#ddd;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    background:#ff9800;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#ffb74d;
    transform:translateY(-3px);
}

@media (max-width:600px){

    .content{
        padding:40px 20px;
    }

    .content h1{
        font-size:55px;
    }

    .content h2{
        font-size:28px;
    }

    .content p{
        font-size:16px;
    }

}
