/* Reset some default styles for consistency across browsers */

h1,
h2,
p,
ul,
li {
    margin: 0;
    padding: 0;
}


/* Main Content Styles */
.content {
    text-align: center;
    /* Center text within the container */
    padding: 60px;
    border: 0px solid #417690;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
    /* Optional: Add a border for visibility */
}

header {
    background-color: #417690;
    color: #fff;
    display: flex;
    flex-direction: row-reverse;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0px;
    z-index: 1000; 
    /* Optional: Add some padding for spacing */
}

.header1 {
    background-color: #417690;
    color: #fff;
    display: flex;
    position: fixed;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    z-index: 1000; 
    /* Optional: Add some padding for spacing */
}

.welcome-message {
    order: 1;
    /* Set the order to 1 to place it on the left */
}

.img-logo {
    max-width: 100%;
    height: 30px;
    order: 2;
    /* Set the order to 2 to place it on the right */
}


/* Footer Styles */
footer {
    background-color: #417690;
    color: #fff;
    padding: 0px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000; 
}

