
* {
   box-sizing: border-box;
   margin: 0;
}

a {
   text-decoration: none;
}

body {
   font-family: 'Montserrat', sans-serif;
   color: #606060;
   font-size: 14px;
}

.top-panel {
   background: white;
   padding: 15px 0;
   display: flex;
   justify-content: center;
   box-shadow: 0 15px 24px rgba(0, 0, 0, 0.22);
}

.top-panel a {
   display: block;
   position: relative;
   padding-left: 20px;
   font-family: 'Montserrat Alternates', sans-serif;
   font-size: 12px;
   letter-spacing: 1px;
   color: #ea7a64;
   font-weight: 500;
}

.top-panel a:before {
   content: "\f100";
   font-family: FontAwesome;
   position: absolute;
   left: 5px;
   transition: .3s;
}

.top-panel a:hover:before {
   left: 0;
}

header {
   text-align: center;
}

header h1 {
   font-size: 1.5em;
   font-weight: 400;
   color: rgba(0, 0, 0, .5);
   margin: 30px 0;
}

header h1 span {
   font-weight: 600;
}

nav {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   margin-bottom: 20px;
}

nav a {
   display: block;
   padding: 10px;
   font-size: 12px;
   color: rgba(0, 0, 0, .7);
}

nav a:before {
   content: "{";
   opacity: 0;
   color: rgba(0, 0, 0, .2);
   padding-right: 7px;
   transition: opacity .2s linear;
}

nav a:after {
   content: "}";
   opacity: 0;
   color: rgba(0, 0, 0, .2);
   padding-left: 7px;
   transition: opacity .2s linear;
}

nav a:hover:before, nav a:hover:after, nav a.current-demo:before, nav a.current-demo:after {
   opacity: 1;
}

.container, header {
   max-width: 960px;
   margin: 50px auto;
   padding: 0 15px;
}

.container {
   background: white;
}

@media (min-width: 768px) {
   body {
      font-size: 16px;
   }
   header, .container {
      padding: 0 45px;
   }
}