* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Crimson Pro', serif;
  background: white;
}
.row {
  margin: 0 auto;
  width: 84%;

}

/*top navbar */
.top-navbar {
  background-color: darkgrey;

}

nav .navbar-brand {
  animation: wiggle 1000ms 1s 20 alternate;
}

nav .dropdown-menu {
  background-color: #353b48;
}

nav .navbar-menu ul li a {
  color: black;
}
nav .dropdown-menu a:link,
nav .dropdown-menu a:visited,
nav .dropdown-menu a:active,
nav .dropdown-menu a:focus {
  background-color: transparent;
}
nav .navbar-menu ul li a:hover {
  border-bottom: 1px solid white;
}

.fixed-nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: darkgrey;
  z-index: 9999;
}

.fixed-nav nav .navbar-menu ul li a {
  color: black;
}

.fixed-nav nav .dropdown-menu {
  background-color: darkgrey;
}

/*Footer*/

@keyframes wiggle {
  from {
    transform: rotateZ(0);
  }
  to {
    transform: rotateZ(10deg);
  }
}

@media only screen and (min-width: 576px) {
  }

@media only screen and (min-width: 1090px) {
  
  
}
