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

body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#1e3c72,#2a5298,#6a11cb);
    background-size:400% 400%;
    animation:bgMove 12s ease infinite;
    overflow:hidden;
}

@keyframes bgMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

.container{
    width:90%;
    max-width:700px;
    text-align:center;
}

.content{
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.2);
    padding:60px 40px;
    border-radius:20px;
    color:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.3);
}

h1{
    font-size:65px;
    margin-bottom:20px;
    font-weight:700;
    letter-spacing:2px;
    animation:fade 2s infinite alternate;
}

@keyframes fade{
    from{
        transform:translateY(-10px);
        opacity:.8;
    }
    to{
        transform:translateY(10px);
        opacity:1;
    }
}

p{
    font-size:18px;
    line-height:30px;
    margin-bottom:40px;
    color:#f0f0f0;
}

.notify{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.notify input{
    width:320px;
    padding:15px;
    border:none;
    border-radius:50px;
    outline:none;
    font-size:16px;
}

.notify button{
    padding:15px 30px;
    border:none;
    border-radius:50px;
    background:#ff9800;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.notify button:hover{
    background:#ff6f00;
    transform:translateY(-3px);
}

.social{
    margin-top:40px;
}

.social a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:50px;
    height:50px;
    margin:0 8px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:20px;
    transition:.3s;
}

.social a:hover{
    background:#fff;
    color:#1e3c72;
    transform:translateY(-5px);
}

@media(max-width:768px){

    h1{
        font-size:45px;
    }

    p{
        font-size:16px;
    }

    .notify input{
        width:100%;
    }

    .notify button{
        width:100%;
    }
}