.bubbly-button {
  display: inline-block;
  text-decoration: none;
  font-size: 1em;
  letter-spacing: 0.05em;
  padding: 1em 2em;
  margin-top: 20px;
  margin-bottom: 20px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #2890cf;
  color: #fff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
}
.bubbly-button.bubbly-button-round {
  width: 70px;
  height: 70px;
  padding: 1em;
  border-radius: 50%;
}
.bubbly-button.bubbly-button-round.bubbly-button-round-icon {
  text-align: center;
  font-size: 20px;
}
.bubbly-button:focus {
  outline: 0;
}
.bubbly-button:before, .bubbly-button:after {
  position: absolute;
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.bubbly-button:before {
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, #2890cf 20%, transparent 20%), radial-gradient(circle, transparent 20%, #2890cf 20%, transparent 30%), radial-gradient(circle, #2890cf 20%, transparent 20%), radial-gradient(circle, #2890cf 20%, transparent 20%), radial-gradient(circle, transparent 10%, #2890cf 15%, transparent 20%), radial-gradient(circle, #2890cf 20%, transparent 20%), radial-gradient(circle, #2890cf 20%, transparent 20%), radial-gradient(circle, #2890cf 20%, transparent 20%), radial-gradient(circle, #2890cf 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.bubbly-button:after {
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, #2890cf 20%, transparent 20%), radial-gradient(circle, #2890cf 20%, transparent 20%), radial-gradient(circle, transparent 10%, #2890cf 15%, transparent 20%), radial-gradient(circle, #2890cf 20%, transparent 20%), radial-gradient(circle, #2890cf 20%, transparent 20%), radial-gradient(circle, #2890cf 20%, transparent 20%), radial-gradient(circle, #2890cf 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.bubbly-button:active {
  transform: scale(0.9);
  background-color: #2481ba;
  box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
}
.bubbly-button.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}
.bubbly-button.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes logoIn {
  from {
    width: 20px;
    height: 20px;
  }
  80% {
    width: 200px;
    height: 200px;
  }
  to {
    width: 180px;
    height: 180px;
  }
}
@keyframes float {
  from {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes shadow {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
html {
  height: 100%;
  font-size: 16px;
}

body {
  height: 100%;
  font-family: "Lato", serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: linear-gradient(#111, #333);
}

* {
  box-sizing: border-box;
}

body:after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  opacity: 0;
  background: url(../images/bg-logo.png), url(../images/bg-main.png), linear-gradient(#2890cf, #2072a4);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: left top, center center;
  animation-duration: 1000ms;
  animation-timing-function: ease-in-out;
  animation-name: fadeIn;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

#logo {
  position: absolute;
  top: -35px;
  left: -45px;
  z-index: 10;
  background-color: white;
  background-image: url(../images/logo.png);
  background-size: 75px 75px;
  background-repeat: no-repeat;
  background-position: 65px 65px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  animation-duration: 500ms;
  animation-timing-function: ease-in-out;
  animation-name: logoIn;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

#content {
  position: relative;
  z-index: 10;
  padding-top: 180px;
  font-weight: 300;
}
#content #info-circle {
  position: relative;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
  width: 360px;
  height: 360px;
  padding: 100px 0 30px;
}
#content #info-circle .contact-details {
  font-size: 16px;
  padding: 5px 0 0 0;
}
#content #info-circle .contact-details li {
  padding: 5px 0;
  color: #3d3d3d;
  display: block;
}
#content #info-circle .contact-details li a {
  padding-left: 10px;
  color: #3d3d3d;
  text-decoration: none;
}
#content #info-circle h1 {
  font-size: 3rem;
  font-weight: 300;
  opacity: 0.8;
  margin: 0;
  color: #3d3d3d;
}
#content #info-circle h1 small {
  margin-top: 5px;
  color: #2890cf;
  display: block;
  font-size: 0.5em;
}
#content #info-circle .download-cv-button {
  z-index: 1000;
  border: 1px solid #fff;
  position: absolute;
  bottom: 10px;
  right: 10px;
  margin: 0;
}

@media only screen and (max-width: 380px) {
  html {
    font-size: 14px;
  }

  #content #info-circle {
    padding-top: 75px;
    width: 300px;
    height: 300px;
  }
}
