body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  background: -webkit-linear-gradient(45deg, #f9a41a 40%, #d22d90 100%);
  background: linear-gradient(45deg, #f9a41a 40%, #d22d90 100%);
  overflow-y: scroll;
}

html {
  padding: 0;
  margin: 0;
}

.logo {
  width: 192px;
  height: 57px;
}

.footer {
  position: relative;
  margin: 0 auto;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}

#bottomLeftCircles {
  position: fixed;
  z-index: 1;
  height: 679px;
  width: 312px;
  bottom: 0;
  margin-left: -5px;
  margin-bottom: -110px;
  background-image: url("../images/bottom-left-circles.png");
}

#topRightCircles {
  position: fixed;
  z-index: 1;
  height: 345px;
  width: 107px;
  top: 100px;
  right: 0px;
  margin-top: 40px;
  margin-right: 0px;
  background-image: url("../images/top-right-circles.png");
}

#bottomRightCircles {
  position: fixed;
  z-index: 1;
  height: 225px;
  width: 129px;
  bottom: 0px;
  right: 0px;
  margin-right: -5px;
  margin-bottom: -100px;
  background-image: url("../images/bottom-right-circles-sm.png");
}

.smooth-animation {
  transition-property: width;
  transition-duration: 2s;
  transition-timing-function: ease-in;
  transition-delay: 1s;
}

.bubble-animation {
  -webkit-animation: bubbles 20s;
  position: relative;
  animation: bubbles 20s;
  -webkit-animation: bubbles 15s infinite alternate;
  animation: bubbles 15s infinite alternate;
}

#backToTop {
  padding: 2px 3px 3px 5px;
  height: 30px;
  width: 30px;
  z-index: 10;
  right: 0;
  cursor: pointer;
  bottom: 0px;
  margin-bottom: 5px;
  display: none;
  position: fixed;
  border: 4px solid #f1f0f0;
  color: #f1f0f0;
}

.large-button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 280px;
  z-index: 50;
  position: relative;
  padding: 19px 24px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.large-button:active,
.large-button:hover {
  outline: 0;
  background-image: linear-gradient(144deg, #AF40FF, #5B42F3 80%, #00DDEB);
}

@-webkit-keyframes bubbles {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100px);
  }
}

@keyframes bubbles {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100px);
  }
}

@media only screen and (max-width: 1160px) {
  body {
    overflow-y: auto;
  }

  #bottomLeftCircles {
    z-index: -1;
    height: 107px;
    width: 67px;
    background-image: url("../images/bottom-left-circles-sm.png");
  }

  #bottomRightCircles {
    z-index: -1;
  }

  #topRightCircles {
    height: 148px;
    width: 41px;
    background-image: url("../images/top-right-circle-sm.png");
    z-index: -1;
  }
}
