/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

/* Background */
body {
    height: 100vh;
    background-image: url(images/background\ 2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Navbar */
.navbar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 36px;
    width: auto;
}


/* Overlay */
.overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.237);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* space for navbar */
}

/* Main content box */
.container {
    background-color: rgba(255, 255, 255, 0);
    padding: 50px 60px;
    border-radius: 12px;
    text-align: center;
    max-width: 1000px;
    width: 90%;
}

/* Heading */
.container h1 {
    font-size: 48px;
    color: #209227;
    margin-bottom: 20px;
}

.container h2 {
    font-size: 40px;
    color: #209227;
    margin-bottom: 20px;
}

