@import "https://fonts.googleapis.com/css?family=Roboto";
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.card {
  background: #2d2d2d;
  position: relative;
  height: 300px;
  width: 600px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.card-header {
  background: transparent;
  padding: 0 20px;
  width: 100%;
  height: 80px;
  line-height: 80px;
}
.card-header h3 {
  color: #fff;
  font-size: 1.4rem;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.65);
}

.card-content {
  position: relative;
  height: 160px;
  width: 100%;
}

.projects {
  background: transparent;
  width: 100%;
  height: 100%;
}

.project {
  position: relative;
  display: block;
  float: left;
  height: 112px;
  width: 30%;
  margin-left: 1.6666%;
  margin-right: 1.6666%;
  overflow: hidden;
}
.project img {
  width: 100%;
}
.project:hover .project-details {
  top: 85%;
  opacity: 1;
}
.project .project-details {
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: top .5s ease, opacity .3s ease;
  -moz-transition: top .5s ease, opacity .3s ease;
  transition: top .5s ease, opacity .3s ease;
}
.project .project-details p {
  color: #fff;
}

.card-footer {
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  height: 60px;
  width: 100%;
  bottom: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.profile {
  width: 60%;
  float: left;
}
.profile .profile-group {
  margin-left: 135px;
}
.profile .name {
  font-size: 1.8rem;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
  text-transform: capitalize;
}
.profile .job {
  color: #a5a5a5;
  position: relative;
  margin-top: -5px;
  margin-left: 10px;
  font-size: 1rem;
}

.skills {
  width: 40%;
  float: right;
  padding: 10px;
}
.skills .skills-group {
  float: right;
}
.skills .skill {
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 2px;
}
.skills .skill img {
  width: 100%;
}

.card-img {
  background: #f9f9f9;
  border: 2px solid #111;
  position: absolute;
  bottom: -25px;
  left: 25px;
  width: 100px;
  height: 100px;
  margin-right: 10px;
  float: left;
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.7);
  -o-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}
.card-img img {
  width: 100%;
}

.canvas-container {
  position: absolute;
  top: 0;
  width: 600px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  z-index: -1;
}

#circles {
  position: absolute;
  top: 0;
  left: 0;
  height: 300px;
  width: 600px;
  z-index: -1;
}
