body{
  height:100%;
  margin-top:100px;
}

.navbar-brand{
  font-weight: bold;
  font-size: 16px;
}

.menuText{
}

.menuTtile{
  font-size: 1.4rem;
}

.menuButton{
  color: #067cf3;
  font-size: 1.4rem;
}

.pageTitle{
  font-size: 1.25rem;
  margin-left: 10px;
  margin-top: 10px;
}


.menuListGroup{
  margin-top:0px;
  font-size: 1.4rem;
}

.menuIcon{
  margin-right:30px;
}

.personIcon{
  margin-right:10px;
}

.list-group-item{
  border: none;
}

.list-group-item.active{
  border-radius: 9px;
  background-color: #067cf3;
}

#dropdownMenuButton{
  margin-top:30px;
}

.rotate{
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}