html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  background: #000;
}

canvas {
  position: absolute;
  min-width: 400px;
  min-height: 400px;
  width: 100%;
  height: 100%;
}

.profile-pic {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 2s ease-in-out;
  -ms-transition: all 2s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.profile-pic {
  display: block;
  z-index: 4;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(1);
  position: relative;
  width: inherit;
  height: inherit;
  border-radius: 50%;
}

.profile-info {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 2s ease-in-out;
  -ms-transition: all 2s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.profile-info {
  z-index: 3;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 100%;
  border-style: solid;
  border-width: 2px;
  padding: 0px;
  overflow: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  width: 200px;
  height: 200px;
  line-height: 400px;
}

.content {
  z-index: 2;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

.link-info {
  position: absolute;
  z-index: 1;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.link-info .social {
  top: 50%;
  right: 50%;
  width: 35px;
  height: 35px;
  position: absolute;
  margin-top: -17.5px;
  margin-right: -17.5px;
}

.link-info .social .link {
  color: #fff;
  width: 35px;
  height: 35px;
  transform: none;
  line-height: 36px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  border: 1px solid #444;
  transition: all 0.9s cubic-bezier(0.68, 1.55, 0.265, 1);
}

.link-info .social .portfolio-btn {
  background: #1f5247;
  border-color: #0E0E0E;
  color: #fff;
}

.link-info .social .facebook-btn {
  background: #3B5897;
  border-color: #0E0E0E;
}

.link-info .social .codepen-btn {
  background: #fff;
  color: #000000;
  border-color: #474848;
}

.link-info .social .github-btn {
  background: #000000;
  color: #fff;
  border-color: #474848;
}

.link-info .social .linkedin-btn {
  background: #117bb8;
  border-color: #1c5d7d;
}

.link-info .social .freecodecamp-btn {
  background: #126400;
  border-color: #0E0E0E;
  color: #fff;
}

.link-info .social .contact-btn {
  background: #df4b38;
  border-color: #974336;
}

.check {
  display: none;
}

.toggle {
  cursor: pointer;
  z-index: 5;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.check:checked + .toggle + .content #info {
  display: block;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(0);
  vertical-align: middle;
}

.check:checked + .toggle + .content #pic {
  display: block;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  vertical-align: middle;
}

.check:checked + .toggle + .content + .link-info .link:nth-child(1) {
  transform: translate(-90px, -100px);
}

.check:checked + .toggle + .content + .link-info .link:nth-child(2) {
  transform: translate(80px, -100px);
}

.check:checked + .toggle + .content + .link-info .link:nth-child(3) {
  transform: translate(-200px, -55px);
}

.check:checked + .toggle + .content + .link-info .link:nth-child(4) {
  transform: translate(-125px, 0);
}

.check:checked + .toggle + .content + .link-info .link:nth-child(5) {
  transform: translate(185px, 95px);
}

.check:checked + .toggle + .content + .link-info .link:nth-child(6) {
  transform: translate(40px, 160px);
}

.check:checked + .toggle + .content + .link-info .link:nth-child(7) {
  transform: translate(100px, -190px);
}

@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  10% {
    transform: scale3d(0.1, 0.1, 0.1);
  }
  40% {
    transform: scale3d(0.8, 0.8, 0.8);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
/*.overlay {
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-color: rgba(111, 111, 111, 0.5);
}*/
.bar {
  display: none;
  position: fixed;
  cursor: pointer;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
  padding: 0px 0 0 0;
  color: #fff;
  line-height: 1px;
  text-align: center;
  background: #111;
  opacity: 0.7;
  z-index: 99999;
  animation: myMove 0.2s linear 0s 1 normal;
  -webkit-animation-direction: alternate;
  /* Safari 4.0 - 8.0 */
  animation-direction: alternate;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.bar:hover {
  background-color: #FF8F81;
  color: #333;
}

.gallery {
  display: none;
  text-align: center;
  position: absolute;
  margin: auto;
  top: 35px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  animation: myMove 0.2s linear 0s 1 normal;
  -webkit-animation-direction: alternate;
  /* Safari 4.0 - 8.0 */
  animation-direction: alternate;
}

.gallery-img {
  width: 300px;
  height: 300px;
  border: 1px solid #111;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery-img:hover {
  border-color: #AEFF81;
}

@keyframes myMove {
  0% {
    top: 500px;
  }
  100% {
    top: 0px;
  }
}
input[type=text],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact {
  display: none;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100px;
  max-width: 400px;
  height: 490px;
  z-index: 9999;
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  color: #777;
  animation: myMove 0.2s linear 0s 1 normal;
}

.send-btn {
  margin-top: 1px;
  width: 100%;
  height: 60px;
  border: 1px solid #ccc;
  background: #AEFF91;
  border-radius: 5px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  cursor: pointer;
  color: #444;
  text-align: center;
  line-height: 1.7em;
  font-size: 2.5em;
  font-weight: 900;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.send-btn:hover {
  background-color: #53E253;
  color: #333;
}

.close-btn {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border: 1px solid #999;
  background: #FF8F81;
  border-radius: 5px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  cursor: pointer;
  color: #444;
  text-align: center;
  line-height: 1.8em;
  font-size: 2em;
  font-weight: 900;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.close-btn:hover {
  background-color: #f34;
  color: #333;
}