@import url('https://fonts.googleapis.com/css?family=Abel');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  height: 100%;
}
body{
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  font-family: 'Abel', sans-serif;
}

.wrapper{
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

header{
  position: absolute;
  text-align: center;
  top: 0px;
  height: 60px;
  color: #fff;
  background-color: #222222;
  margin: 0;
  padding: 0;
}
.container{
  padding: 100px 0;

}
.wrap_content{
    display: inline-block;
    position: relative;
    height: 100%;
    width: auto;
    left: -5%;
}
.iconss{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(profile.jpg) no-repeat center;
  background-size: cover;
  display: inline-block;
}
header h3 {
  position: relative;
  top: -25%;
  display: inline-block;
  margin: 0 20px;
  line-height: 100%;
  white-space: nowrap;
}
header ul.lists_hor{
  display: none;
  position: relative;
  top: -25%;
  margin-left: 100px;
}
header ul.lists_hor li{
  display: inline-block;
  margin: 0 20px;
  color: #fff;
  font-size: 2rem;
}

header .ham{
  display: block;
  position: absolute;
  right: 2%;
  font-size: 3rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
header .ham:hover{
  color: rgba(255, 255, 255, 0.7);
}

header ul.lists_ver{
  display: none;
  position: absolute;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.9);
  width: 70%;
  right: 2%;
  top: 100%;
}
header ul.lists_ver a{
  text-decoration: none;
  width: 100%;
  display: block;
  cursor: pointer;
}
header ul.lists_ver a li:hover{
  background-color: rgba(0, 0, 0, .7);
}
header ul.lists_ver a li{

  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 2rem;
}

.about_text{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.about_text p {
  font-size: 2.3rem
}

.footer{
  position: absolute;
  bottom: 0;
  text-align: center;
  color: #fff;
  margin: 0;
  padding:20px 0;
  background-color: #222222;
  height: auto;
}
footer ul{
  display: inline-block;
  position: relative;
  text-align: center;
  top: 25%;
  padding: 0;
  margin: 0;
}
footer ul li{
  display: inline-block;
  margin: 0 20px;
  color: #fff;
  font-size: 2rem;
}
footer ul li a{
    color: #fff;
}

@media only screen and (min-width: 720px) {
  header .ham{
    display: none;
  }
  header ul.lists_hor{
    display: inline-block;
  }
  header ul.lists_ver{
    display: none;
  }
}
