/* Reset some basic styles for a clean slate */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif; /* Default system font */
    background-color: #121212; /* Very dark background for the dark mode */
    color: #f4f4f4; /* Light text for contrast */
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    pading: 0;
}

header {
    background-color: #1a1a1a; /* Dark grey background */
    color: #ff6f00; /* Deep orange text */
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid #ff6f00; /* Orange border for emphasis */
}

h1 {
    font-size: 2.5em;
}

.navbar {
    text-align: center;
    background-color: #333; /* Dark grey background */
    padding: 15px;
    font-size: 1.2em;
}

.navbar a {
    text-decoration: none;
    color: #ff6f00; /* Deep orange text */
    padding: 10px 20px;
}

.navbar a:hover {
    background-color: #ff6f00; /* Deep orange hover background */
    color: #121212; /* Dark text when hovering */
    border-radius: 4px;
}

.section {
    padding: 40px 20px;
    margin: 20px;
    background-color: #1e1e1e; /* Dark grey background for sections */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ff6f00; /* Deep orange for headings */
}

ul {
    list-style-type: none;
}

ul li {
    font-size: 1.2em;
    margin: 10px 0;
}

footer {
    text-align: center;
    background-color: #1a1a1a; /* Dark grey background */
    color: #ff6f00; /* Deep orange text */
    padding: 10px;
    position: static;
    width: 100%;
    margin-top: auto;
    border-top; 1px solid #ff6f00;
    font-size: 0.8em;
}

container {
    flex:1;
  }

.contact-info {
    margin-bottom: 20px;
}

.contact-info a {
    color: #ff6f00;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}
