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

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    text-align:center;
    color:white;

    background:
        linear-gradient(rgba(18,55,28,0.28), rgba(18,55,28,0.28)),
        url("melati.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.container{
    width:100%;
    max-width:430px;
    padding:38px 24px;
    border-radius:28px;

    background:rgba(48, 88, 58, 0.88);
    backdrop-filter:blur(14px);

    box-shadow:
        0 10px 28px rgba(0,0,0,0.25);

    border:1px solid rgba(255,255,255,0.18);
}

h1{
    font-size:2.4rem;
    line-height:1.3;
    margin-bottom:22px;
    color:#ffffff;
}

p{
    font-size:1.12rem;
    line-height:1.9;
    color:#f2fff2;
    margin-bottom:32px;
}

.buttons{
    display:flex;
    flex-direction:column;
    gap:14px;
    align-items:center;
}

.btn{
    width:100%;
    max-width:240px;
    padding:14px;
    border-radius:35px;
    text-decoration:none;
    color:white;
    font-size:1rem;
    background:linear-gradient(135deg,#7ea584,#5e8665);
    box-shadow:0 6px 16px rgba(0,0,0,0.25);
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,#90b895,#668f6d);
}

@media (max-width:480px){
    h1{
        font-size:2rem;
    }

    p{
        font-size:1rem;
    }

    .container{
        padding:32px 20px;
    }
}