/* Fonts from Google Fonts - more at https://fonts.google.com */
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700');
@import url('https://fonts.googleapis.com/css?family=Niconne');
* { box-sizing: border-box;
margin: 0;
padding: 0; }
.container {
 font-family: 'Roboto Condensed', sans-serif;
  width: 100%;
  margin: 0 auto;
  color: #444;
  text-align: center;
margin-top: 20px;
}

h1 {
  font-family: 'Niconne', cursive;
  font-size: calc( 3vw + 60px );
  
}


nav {
  width: 60%;
  margin: 0 auto;
  background: #ffffff;
  padding:  0;
  
  left: 40px;
}
nav ul {
  padding: 15px;
  list-style: none;
  text-align: center;
}
nav ul li {
  display: block;
  
}
nav ul li a {
  width: 100%;
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #4c4c4c;
  font-size:1.2em;
  font-weight: 800;
  text-transform: uppercase;
  position:relative;
  margin: 0 auto;

  text-align: center;
}
nav.navigation ul li a:hover {
  color: #584a4a;
  background-color: #fff5f5;
 
}
ul li a:after{
  position: absolute;
  bottom: 0;
  left: 0;
  content: '.';
  width: 0px;
  display: block;
  color: transparent;
  background: #584a4a;
  height: 1px; 
transition: .5s; }

ul li:hover a:after{
  width: 100%;
  
}

@media (min-width: 500px) {
  h1,a{
    display: inline-block;
   
   text-align: center;
    margin-bottom: 5px;
  }
  nav.navigation ul li a:hover {
  color: #584a4a;
  background-color: #fff5f5;
 
}
ul li:hover a:after{
  width: 100%;
  
}
}

@media (min-width: 800px) {
  h1,a{
    display: inline-block;
    
    text-align: center;
    margin-bottom: 5px;
  
  }
}





