.navbar {
  transition: all 0.4s;
}

.navbar .nav-link {
  color: #fff;
  padding: 10px 20px;  
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #eee;
  text-decoration: none;
  background-color: darkgoldenrod;
  border-radius: 5px;
}

.navbar .navbar-brand {
  color: #fff;
}

.navbar-brand 
{
  justify-content: flex-start;
}
/* Change navbar styling on scroll */
.navbar.active {
  background: #eee;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.active .nav-link {
  color: #555;
}

.navbar.active .nav-link.active {
  color: #eee;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
  color: #555;
  text-decoration: none;
}

.navbar.active .navbar-brand {
  color: #555;
}

  .navbar {
    background: #eee;
  }

  .navbar .navbar-brand,
  .navbar .nav-link {
    color: #555;
  }

  .nav-link.active {
    color: #eee;
  }

/* Change navbar styling on small viewports */
@media (max-width: 991.98px) {
  .navbar {
    background: #eee;
    outline: 2px solid grey;
    outline-offset: -3px;
  }

  .navbar .navbar-brand,
  .navbar .nav-link {
    color: #555;
  }

  .nav-link.active {
    color: #eee;
  }
  ul li:first-child {
    margin-top: 20px;
  }
}

body {
  min-height: 110vh;
  background-color: #4881af;
        
}

.btn {
  padding: 10px 10px;
  background-color: #485167;
  color: #f1f1f1;
  border-radius: 5px;
  transition: 0.2s;
    border: 1px solid #aaa;
}

.btn:hover,
.btn:focus {
  border: 1px solid #333;
  background-color: #fff;
  color: #000;
}

footer {
  background: #eee;;
  color: #555;
  padding: 2px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 1px solid lightgrey;
}

footer p {
  margin: 5px;
}

.mainContainer {
  margin: 90px auto 40px auto;
}

h1 {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  background-color: aliceblue;
  color: #555;
  border-radius: 5px;
  padding: 3px 0px;
    border: 2px solid grey;
}

.nav-link.active {
  background-color: darkcyan;
  border-radius: 5px;
}

.nav-item {
  padding: 2px 7px;
}

h3 {
  background-color: #485167;
  color: white;
  padding: 4px;
  width: 95%;
  text-align: center;
  border-radius: 3px;
  margin: 5px auto;
}

button:hover {
  font-weight: bold;
}

.display-none {
  display: none;
}

.logoStyle
{
    font-size: 30px; 
    padding: 0px 0px;
}

.navbar-brand:hover
{
    font-size: 21px;
}