@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600");
canvas {
    position: absolute;
    top: 0;
    left: 0;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #edf3f8;
  background: -moz-radial-gradient(center, ellipse cover, #edf3f8 1%, #dee3e8 100%);
  background: -webkit-radial-gradient(center, ellipse cover, #edf3f8 1%, #dee3e8 100%);
  background: radial-gradient(ellipse at center, #edf3f8 1%, #dee3e8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#edf3f8', endColorstr='#dee3e8',GradientType=1 );
}

.title {
  z-index: 10;
  position: fixed;
  left: 50%;
  top: 40%;
  transform: translateX(-50%) translateY(-50%);
  font-family: "Montserrat";
  text-align: center;
  width: 100%;

}
.title h1 {
  position: relative;
  color: white;
  font-weight: 300;
  font-size: 3em;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.title h2 {
  font-weight: 600;
  font-size: 4em;
  padding: 0;
  margin: 0;
  line-height: 1;
  color: white;
}
.title h3 {
  font-weight: 200;
  font-size: 1em;
  padding: 0;
  margin: 0;
  line-height: 2;
  color: white;
  letter-spacing: 2px;
}
.title p {
  font-weight: 200;
  font-size: 2em;
  color: #5e7283;
}

.pentahedron {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: #3E82F7;
}

.point {
  fill: #8491A3;
}

.rhombus {
  fill: #2DA94F;
  stroke: #2DA94F;
}

.x {
  fill: #FDBD00;
}

.circle {
  fill: #ED412D;
}

svg {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  transform: translateZ(0px);
}

#resumeLink{
    border: 1px solid white;
    border-radius: 0.5em;
    padding: 0.2em;
}

#resumeBtn:focus {
    outline: none;
    outline-color: transparent;
}
a{
    text-decoration: none;
    font-weight: 400;
    font-size: 1.5em;
    color: white;
    transition: 0.5s;
}

a:hover{
    color: #FDBD00;
    transform: scale(1.2);
}
.fa{
    margin: 0.5em;
    transition: 0.5s;
}
.fa:hover{
    transform: scale(1.2);
}
.fa-instagram{
    color: white;
}
.fa-instagram:hover{
    color: #f00fa5;
}
.fa-facebook{
    color: white;
}
.fa-facebook:hover{
    color: #350af3;
}
.fa-linkedin{
    color: white;
}
.fa-linkedin:hover{
    color: #3E82F7;
}
.fa-github{
    color: white;
}
.fa-github:hover{
    color: #FDBD00;
}
.fa-twitter{
    color: white;
}
.fa-twitter:hover{
    color: #3eccf7;
}
