.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.logo {
    font-size: larger;
    font-weight: bold;
    color: #2d6acd;
}

.navbar-list-link {
    display: block;
    padding: 0.5rem;
    color: #353f95;
    text-decoration: none;
    font-size: medium;
}

.navbar-list-link:hover {
    color: #007bff;
}

.navbar-item {
    padding-top: 1.2rem;
}

.page-container {
    position: relative;
    min-height: 100vh;
  }
  
  .content-wrap {
    padding-bottom: 4.5rem;    /* Footer height */
  }

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4.5rem;
    
}

.inversed-color {
    font-size: medium;
    color: white;
}

.blueback {
    background-color: #2d6acd;
    padding-top: 1.2rem;
    word-wrap: break-word;
}