/* Global style */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: black;
    font-family: 'Times New Roman', serif;
    justify-content: center;
}

h1 {
    color: orange;
    padding-bottom: 10px;
    font-weight: bold;
}

h2, h3, h4 {
    color: #547150;
    padding-bottom: 5px;
    padding-top: 5px;
    font-weight: bold;
}

h2 {
    text-align: center;
}

ol, ul {
    padding-left: 20px;
}

.main-content {
    max-width: 1000px;
    margin: 80px auto 0 auto; 
    padding-left: 10px;
    padding-right: 10px;
}

/* Nav style */

.fixed-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    background-color: #C5D8D1; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0; 
}

.fixed-navbar a {
    color: black;
    text-align: center;
    padding: 14px 20px;
    display: inline-block;
    font-size: 17px;
    text-decoration: underline;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0; /* Align the dropdown to the right of its parent */
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.fixed-navbar a:active {
    color: white;
}

.contact {
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 20px; 
}

