.navbar {
    background-color: #0083B3; /* ITU blue */
    overflow: hidden;
}

/* Style the links inside the navbar */
.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 16px 20px;
    text-decoration: none;
}

/* Change the color of the links on hover */
.navbar .navbar-item:hover {
    color: #8ec2e2; /* ITU blue 2*/
}

/* Center the logo */
.navbar img {
    display: block;
    height: 30px; /* Adjust the height as needed */
    width: auto; /* Adjust the width as needed */
    margin: -6px auto;
}

section {
    padding: 2em;
    text-align: center;
}

footer {
    background-color: #009CD5; /* ITU blue */
    color: #fff;
    text-align: center;
    padding: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;

}

header {
    background-color: #009CD5; /* ITU blue */
    color: #fff;
    text-align: center;
    padding: 1em;
}