:root {
	  --main-font: "Helvetica", Verdana, sans-serif;
      --color-bg: #ffeeee;
      --color-text: #001111;
      --color-link: #001D4A;
      --color-heading: #001111;
      --color-header: #97D4E1;
      --color-navigation: #001D4A;
  }



body {
	margin-top: 6px;
	margin-left: 0px;
	margin-right: 0px;
	background-color: var(--color-bg);
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* Center horizontally */
    min-height: 100vh; /* Ensure the body takes at least the full viewport height */
    background-color: #f0f0f0;
}

.alert {
  width: fit-content;
  border-radius: 25px;
  padding: 20px;
  background-color: #485cb5;
  color: white;
  margin: auto;
  margin-bottom: 15px;
}


.centered-container {
    max-width: 800px; /* Maximum width of the content */
    width: 100%; /* Take up the full width of the container */
    margin: 0 auto; /* Center the container */
    /* padding: 10px; */
    background-color: var(--color-bg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center the text within the container */
}

header {
	background-color: var(--color-header);
    margin-bottom: 10px;
}

header h1 {
	margin-top: 0px;
	margin-bottom: 0px;
}

a:link {
	color: var(--color-link);
	background-color: transparent;
	text-decoration: none;
}

a:visited {
	color: var(--color-link);
	background-color: transparent;
	text-decoration: none;
}


h1 {
	font-family: var(--main-font);
	color: var(--color-heading);
	text-align: center;
}

p {
	color: var(--color-text);
	font-family: var(--main-font);
	font-size: 15px;
    margin-left: 20px;
    margin-right: 20px
} 

p.contact {
	font-family: var(--main-font);
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 15px;
}


.burger-icon {
    span {
        display: block;
        width: 35px;
        height: 4px;
        background-color: #ddd;
        margin: 4px 0;
    }
}

.navbar {
    align-items: stretch;
    height: 45px;
    margin-top: 0;
    padding: 0;
    text-align: left;
    display: flex;

    .burger {
        display: none;
        margin-top: 0;
        align-items: center;
    }

    .nav-item {
        background-color: var(--color-navigation);
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        margin-right: 1px;
        border: none;
    }
    .nav-item:hover {
        background-color: #111;
    }

    a {
        background-color: var(--color-navigation);
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        margin-right: 1px;
    }

    a:hover {
        background-color: #111;
    }
    a.active {
        background-color: #2312BB;
    }

    .nav-list {
        height: 100%;
        justify-content: space-around;
        display: flex;
        margin-top: 0;
        padding: 0;
        list-style: none;
        flex-direction: row;
    }

    .nav-list li {
        margin: 0;
        padding: 0;
    }
    .nav-list li a {
        display: flex;
        align-items: center; /* Center the text vertically */
        justify-content: center; /* Optional: Center the text horizontally */
        height: 100%; /* Make the <a> tag fill the height of the navbar */
        padding: 0 16px; /* Add some horizontal spacing */
    }

    /* Media Query for Mobile Devices */
    @media screen and (max-width: 768px) {
        flex-direction: column;
        height: max-content;
        .nav-list {
            height: max-content;
            display: none; /* Hide the menu by default on mobile */
            position: flex;
            width: 100%;
            flex-direction: column;
            background-color: var(--color-navigation);
        }

        .nav-list.show {
            display: flex; /* Show the menu when the burger is clicked */
        }

        .nav-list li a {
            padding: 14px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        .burger {
            display: flex; /* Keep the burger menu visible */
        }

    }
}

form  {
    display: table;
    margin-left: auto;
    margin-right: auto;
}
form > p     { display: table-row;  }
form > p > label { display: table-cell; }
form > p > input { display: table-cell; }
