/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set full viewport height */
body, html {
    height: 100%;
    width: 100%;
    font-family: "Inter", sans-serif;
    background-color: #1D3E34;
    color: white;
}

/* Navbar styling
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 80px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.7px);
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #E9EBF8;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.8;
} */

/* Content styling */
.content {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 40px; /* Add padding to account for fixed navbar */
}

.image-container {
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
