/* nav bar stuff */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #ffff;
  background-color: #a6bce0;
  width: 100%;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  color: #2B4DA6;
}

nav ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  color: #2B4DA6;
}

nav li {
  position: relative;
}

nav a {
  display: block;
  padding: 15px 20px;
  color: #2B4DA6;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

nav a:hover {
  color: #6182D4;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  flex-direction: column;
}

.dropdown-menu li a {
  padding: 12px 16px;
  display: block;
  background: #a6bce0;
}

.dropdown-menu a:hover {
  color: #6182D4;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.logo img {
  height: 60px;
  width: auto;
}

.footer {
  border-top: 2px solid #ffff;
  background-color: #a6bce0;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  font-size: 15px;
  color: #2B4DA6;
}

/* body */
html, body {
  margin: 0;
  height: 100%;
}

body {
  background-color: #cad7ed;
}
