/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Styles */
nav {
    background-color: #f4f4f4; /* Optional: background color for better visibility */
    padding: 10px 0; /* Adjust the padding as needed */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center items horizontally */
}

nav li {
    position: relative;
    margin: 0 15px; /* Adjust the spacing between items */
}

nav a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
}

/* Dropdown Styles */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown li {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown li:hover {
    background-color: #f1f1f1;
}

/* Show Dropdown on Hover */
nav li:hover .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Body and Container Styles */
/* Body and Container Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    background-color: #D4F1DE;
}

/* Content Styles */
.content {
    max-width: 800px; 
    width: 100%;
    text-align: center;
}


h1 {
    font-size: 36px;
    font-weight: bold;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

button {
    background-color: #4CAF50;
    color: rgb(0, 0, 0);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-family: "Segoe UI";
}

button:hover {
    transform: scale(1.05);
    background-color: #45a049;
}

/* Image Styles */
.image {
    max-width: 100%;
    height: auto;
}
