

body {
    width: 100%;
    margin: 0;
    padding: 0;
}

#header{
    background-color: rgb(161,176,218);
    height: 100%;

}

/* Add this to your existing CSS file or in a <style> tag in your HTML */
#header ul {
margin: 0;
padding: 0;
text-align: center; /* Align the list items to the right */
}

#header li {
display: inline;
margin:250px;

}

#header li a {
font-family: Bebas Neue;
font-size: 30px;
text-decoration: none; /* Remove underline from links */
color: #000; /* Set the color of the links */
}

#header li a:hover {
color: #ee0000; /* Change color on hover */
}



/* Style for main sections container */
.main-section {
display: flex;
justify-content: space-between;
margin: 20px; /* Adjust margin as needed */
min-height: 100%;

}

/* Style for each main section */
.section {
flex: 1;
padding: 20px;
box-sizing: border-box;
margin-right: 10px; /* Adjust margin as needed */
}


.declaration {
font-family: Seymour One;
text-align: center;
font-size: 40px;
padding-left: 50px;
}

#footer{
    background-color: rgb(161,176,218)

}