body {
  font-family: Helvetica, Verdana, Arial;
  text-align: center;
  margin-top: 65px;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #666;
}

.super:hover {
  color: #00b0f8;
}

.pano:hover {
  color: #fcff00;
}

.fez:hover {
  color: #fd6c00;
}

.shop:hover {
  color: #ff0000;
}

ul {
  list-style-type: none;
}

svg {
  margin-bottom: 20px;
}

.content {
  width: 32rem;
  margin: 0 auto;
  font-weight: 600;
  text-align: left;
  font-size: .9rem;
  line-height: 100%;
  -webkit-animation: fadeUp .65s ease-in-out;
          animation: fadeUp .65s ease-in-out;
}

.contact {
  float: left;
}

.projects {
  float: right;
  margin-right: 7rem;
}

@-webkit-keyframes fadeUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/*SVG animation*/
.orange {
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.yellow {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.blue {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

path {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  -webkit-animation: dash 2s ease-in-out forwards;
          animation: dash 2s ease-in-out forwards;
}

@-webkit-keyframes dash {
  from {
    stroke-dashoffset: 1500;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  from {
    stroke-dashoffset: 1500;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@media screen and (max-width: 700px) {
  svg {
    height: 300px;
    width: 300px;
  }

  .content {
    width: 19rem;
  }

  .projects {
    margin-right: 0;
  }
}
