body, html {
  margin: 0;
  background-color: white;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

/* Desktop */

.desktop-header {
  color: #ecf0f1;
  height: 40px;
  width: 100%;
  background-color: #1a1a1a;
  line-height: 40px;
}

.desktop-header .title {
  float: left;
}

.desktop-header .links {
  float: right;
}

.desktop-header a {
  color: white;
  text-decoration: none;
  margin-right: 10px;
  transition: color 0.2s ease;
}

.desktop-header a:hover {
  color: #bdc3c7;
}

/* Mobile */

.mobile-header {
  color: #ecf0f1;
  width: 100%;
  background-color: #1a1a1a;
  line-height: 40px;
  display: none;
}

 .mobile-header .col {
   margin: 0px;
 }

.button-area {
  width: 30px;
  height: 30px;
  margin: 5px;
}

.button-area img {
  height: 100%;
  width: 100%;
  display: block;
  border: none;
}

.button-area img:hover {
  cursor: pointer;
}

.mobile-header .title {
  float: left;
}

.mobile-header .links {
    height: auto;
    max-height: 200px;
    overflow-y: hidden;
    margin-top: 40px;
    transition-duration: 0.5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

.mobile-header .collapsed {
  max-height: 0;
}

.mobile-header a {
  color: white;
  text-decoration: none;
  margin-right: 10px;
  transition: color 0.2s ease;
}

.mobile-header a:hover {
  color: #bdc3c7;
}

/*  GO FULL WIDTH BELOW 480 PIXELS */

@media only screen and (max-width: 480px) {
	.desktop-header {
    display: none;
  }

  .mobile-header {
    display: block;
  }
}
