@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700);
* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding: 3em 2em;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
  line-height: 1;
}

.site-nav {
  text-align: center;
}

.nav-link {
  display: inline-block;
  margin-right: 20px;
  color: #cc0d0d;
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1.3;
  text-decoration: none;
  border-bottom: 1px solid #cc0d0d;
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
.nav-link:hover, .nav-link:focus {
  color: #000;
  border-bottom: 10px solid #cc0d0d;
}
.nav-link:active {
  border-bottom: 20px solid #cc0d0d;
}

.nav-link-beauty {
  display: inline-block;
  margin-right: 20px;
  color: #000;
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1.3;
  text-decoration: none;
  border-bottom: 10px solid #cc0d0d;
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}