/* Fullscreen Background */
#background-overlay {
    background-color: #006400; /* Hijau gelap */
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

/* Responsive Text */
h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Remove margin */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}
