/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #000000;
 
}
.container-fluid {
    padding: 0; /* Optional: Removes any padding from the container */
    margin: 0;  /* Optional: Removes any margin from the container */
}

.img {
    width: 100%; /* Makes the image stretch to the full width of the container */
    height: auto; /* Keeps the aspect ratio of the image intact */
    display: block; /* Removes any space below the image */
}
.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

.header {
    margin-bottom: 20px;
    text-align: center;
    
}

 
.navbar {
    background-color: #4bc0c0; /* Set the background color */
    border: 1px solid #000000;
    overflow: hidden;
    display: flex; /* Use flexbox for layout */
    justify-content: center;
}

.navbar ul {
    list-style-type: none; /* Remove bullets */
    margin: 0;
    padding: 0;
    display: flex; /* Align items horizontally */
}

.navbar li {
    margin: 0;
    padding: 0;
}


.navbar a {
    display: block;
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-align: center;
    padding: 14px 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.navbar a:hover {
    transform: scale(1.1); /* Slightly enlarge the text */
    color: #000000; /* Change text color */
}


h1 {
    text-align: center; /* Center the text horizontally */
    font-size: 2.5em; /* Adjust font size */
    color: #000000; /* Text color */
    font-family: Arial, sans-serif; /* Choose a font */
    margin-top: 20px; /* Add some space above */
    margin-bottom: 20px; /* Add some space below */
}


h2 {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center horizontally */
    margin-top: 50px; /* Add some space below the navigation bar */
    margin-bottom: 0; /* Remove default bottom margin */
    flex-wrap: nowrap;
}

button {
    background: white;
    border: 1px solid #0074cc;
    border-radius: 10px;
    margin: 20px 20px;
    padding: 30px 80px; /* Increase padding for a larger button */
    font-size: 1em; /* Increase font size */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    display: flex; /* Ensure text stays centered */
    justify-content: space-around;
    
}

button:hover {
    transform: translateY(-5px); /* Add hover animation */
    background-color: #d1e8ff; /* Change background color on hover */
}



.hidden {
    display: none;
}
