@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Hind Siliguri',sans-serif;
    height:100vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(135deg,#0f0f0f,#1e1e1e,#111);
    color:white;
}

.container{
    text-align:center;
    z-index:10;
    padding:30px;
}

.emoji{
    font-size:90px;
    animation:bounce 1s infinite;
}

h1{
    margin-top:20px;
    font-size:3rem;
    line-height:1.4;
    cursor:pointer;
    transition:.3s;
}

h1:hover{
    transform:scale(1.05) rotate(-2deg);
}

span{
    color:#ff4d4d;
}

.subtitle{
    margin-top:30px;
    font-size:1.3rem;
    color:#ddd;
}

.buttons{
    margin-top:40px;
}

.buttons a{
    display:inline-block;
    margin:10px;
    padding:15px 30px;
    text-decoration:none;
    color:white;
    font-size:20px;
    border-radius:50px;
    transition:.3s;
}

.buttons a:first-child{
    background:#1877f2;
}

.buttons a:last-child{
    background:#25D366;
}

.buttons a:hover{
    transform:translateY(-5px) scale(1.08);
}

.footer{
    margin-top:60px;
    color:#999;
    font-style:italic;
}

.floating-bg span{
    position:absolute;
    font-size:40px;
    animation:float linear infinite;
}

@keyframes float{

    from{
        transform:translateY(110vh) rotate(0deg);
    }

    to{
        transform:translateY(-20vh) rotate(360deg);
    }

}

@keyframes bounce{

    50%{
        transform:translateY(-15px);
    }

}