body { margin: 0; overflow: hidden; background: black; font-family:"Roboto";}
canvas { display: block;}
#Card{
    position: absolute;
    z-index: 10;

    height: 470px;
    width: 300px;
    overflow: hidden;
    top: calc(50% - 255px);
    left: calc(50% - 150px);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: aliceblue;
    filter: drop-shadow(1px 1px 4px #000);
    background: linear-gradient(rgba(241, 241, 241, 0.048), rgba(37, 37, 37, 0.096));
}

#Main{
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin: 20px;
    text-align: center;
    
    h1{
        margin-top: 4px;
    }
    h2{
        font-size: 90%;
        margin-top: -20px;
    }
    h3{
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 150%;
    }
    p{
        margin-top: -4px;
    }
}

#ProfilePicture{
    width: 85px;
    border-radius: 100%;
}

.social-btns .btn,
.social-btns .btn:before,
.social-btns .btn .fa {
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.social-btns .btn:before {
  top: 90%;
  left: -110%;
}
.social-btns .btn .fa {
  transform: scale(0.8);
}
.social-btns .btn.facebook:before {
  background-color: #3b5998;
}
.social-btns .btn.facebook .fa {
  color: #3b5998;
}
.social-btns .btn.twitter:before {
  background-color: #3cf;
}
.social-btns .btn.twitter .fa {
  color: #3cf;
}
.social-btns .btn.linkedin:before {
  background-color: #00aff0;
}
.social-btns .btn.linkedin .fa {
  color: #00aff0;
}
.social-btns .btn.whatsapp:before {
  background-color: #63E6BE;
}
.social-btns .btn.whatsapp .fa {
  color: #63E6BE;
}
.social-btns .btn.instagram:before {
  background-color: #f26798;
}
.social-btns .btn.instagram .fa {
  color: #f26798;
}
.social-btns .btn:focus:before,
.social-btns .btn:hover:before {
  top: -10%;
  left: -10%;
}
.social-btns .btn:focus .fa,
.social-btns .btn:hover .fa {
  color: #fff;
  transform: scale(1);
}
.social-btns {
  height: 90px;
  margin: auto;
  font-size: 0;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.social-btns .btn {
  display: inline-block;
  background-color: #66666679;
  width: 65px;
  height: 65px;
  line-height: 67px;
  margin: 5px 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 28%;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,0.1);
  opacity: 0.99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.103);
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.social-btns .btn:before {
  content: '';
  width: 120%;
  height: 120%;
  position: absolute;
  transform: rotate(45deg);
}
.social-btns .btn .fa {
  font-size: 38px;
  vertical-align: middle;
}
