body {
  margin: 0;
  overflow: hidden;
}

canvas {
  -webkit-filter: blur(0.6px);
  -moz-filter: blur(0.6px);
  -o-filter: blur(0.6px);
  -ms-filter: blur(0.6px);
  filter: blur(0.6px);
}

#Profile {
  position: absolute;
  margin: auto;
  top: 33%; right: 0; left: 0;
  width: 220px; height: 70px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

#Profile img {
  border-radius: 5px;
  -webkit-filter: grayscale(0.7);
  -moz-filter: grayscale(0.7);
  -ms-filter: grayscale(0.7);
  filter: grayscale(0.7);
  opacity: 0.9;
}

#Profile:before {
  content: '';
  position: absolute;
  top: -6px; left: -6px;
  width: 230px; height: 80px;
  border-radius: 8px;
  border: 1px solid #BCBCBC;
}

#Profile:after {
  content: '';
  position: absolute;
  top: -11px; left: -11px;
  width: 240px; height: 90px;
  border-radius: 11px;
  border: 1px dashed #81BDA4;
}

#Profile span {
  position: absolute;
  margin: auto;
  top: 0; right: 0; left: 0; bottom: 0;
  width: 220px; height: 70px;
  border-radius: 5px;
  line-height: 120px;
  font-family: 'Arial';
  font-size: 20px;
  visibility: hidden;
}

#Profile:hover img {
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
  opacity: 0.8;
}
.SocialIcon {
margin-top: 9px;
}
a {
    text-decoration: none;
    color: inherit;
}

.c-icon {
    width:  24px;
    height: 24px;
    fill: currentColor;
    transition: .2s;
}

.c-link--facebook:hover  { color: #3b5998 }
.c-link--twitter:hover   { color: #55acee }
.c-link--google:hover    { color: #dd4b39 }
.c-link--pinterest:hover { color: #bd081c }
.c-link--instagram:hover { color: #833ab4 }
.c-link--snapchat:hover  { color: #fbe00f }
.c-link--facebook:hover::after  { background: #3b5998 }
.c-link--twitter:hover::after   { background: #55acee }
.c-link--google:hover::after    { background: #dd4b39 }
.c-link--pinterest:hover::after { background: #bd081c }
.c-link--instagram:hover::after { background: #833ab4 }
.c-link--snapchat:hover::after  { background: #fbe00f }

.c-link {
    position: relative;
    color: #bbb;
}

.c-link:not(:last-of-type) {
    margin-right: 15px;
}

.c-tooltip::before,
.c-tooltip::after {
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -10px);
    opacity: 0;
    transition: .2s;
}

.c-tooltip::before {
    content: '';
    bottom: calc(100% + 2px);
    border: solid 5px transparent;
    border-top-color: currentColor;
}

.c-tooltip::after {
    content: attr(aria-label);
    bottom: calc(100% + 12px);
    padding: .61em .93em;
    font-size: .875rem;
    color: white;
    border-radius: 3px;
}

.c-tooltip:hover::before,
.c-tooltip:hover::after {
    opacity: 1;
    transform: translate(-50%);
}

.pens-link-container {
    flex-basis: 100%;
    font-size: .9rem;
    text-align: center;
}

.pens-link {
    margin-bottom: 0;
    background: white;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
    border: none;
}