/*Typography*/
html {
  font: 16px 'Roboto';
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2.25em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.75em;
}

p {
  font-size: 1.5em;
}

h1,
h2,
h3,
h4,
p {
  line-height: 1.275em;
}

/*Base*/
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

/*Layout*/
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.content {
  width: 90%;
}


:target {
  z-index: 2;
  opacity: 1;
}

/*Hiding mechanism*/
input {
  display: none;
}

/*Sections*/
section {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  min-height: 100%;
  opacity: 0;
  overflow: visible;
  -webkit-transition: width .5s, opacity .5s;
  transition: width .5s, opacity .5s;
}

.content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/*Home*/
.sec-home {
  float: left;
  position: relative;
  background: #ffffff;
  color: #;
  opacity: 1;
}

.sec-home a {
  color: #505050;
  -webkit-text-decoration-style: dashed;
          text-decoration-style: dashed;
}
.sec-home a:hover {
  color: #505050;
}
.sec-home a:active {
  color: #505050;
}

.sec-home .content {
  height: 75%;
  text-align: center;
  background: #ffffff;
  color: #505050;
}

/*About*/
.sec-about {
  background: #ffffff;
  color: #505050;
}

.sec-about .content {
  height: 75%;
  text-align: center;
}

