/* style.css */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content{
    text-align: center;
    max-width: 700px;
    padding: 50px 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.content h1{
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f8fafc;
}

.content p{
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.verse{
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-left: 4px solid #38bdf8;
    border-radius: 12px;
    font-style: italic;
    color: #e2e8f0;
}

.verse span{
    display: block;
    margin-top: 12px;
    font-weight: bold;
    color: #38bdf8;
}

footer{
    text-align: center;
    padding: 20px;
    font-size: 0.95rem;
    background: rgba(0,0,0,0.25);
    color: #cbd5e1;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Responsive */

@media(max-width: 768px){

    .content{
        padding: 40px 25px;
    }

    .content h1{
        font-size: 2.2rem;
    }

    .content p{
        font-size: 1rem;
    }

}