@-webkit-keyframes hover {
  0% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
}

@keyframes hover {
  0% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
}

/* Start of website CSS */
.animated {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: inherit;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  font-family: "Work Sans", sans-serif;
  background: url("../img/background.png"), url("../img/background.jpg"), url("../img/background.jpeg"), -webkit-gradient(linear, left top, left bottom, from(#111202));
  background: url("../img/background.png"), url("../img/background.jpg"), url("../img/background.jpeg"), linear-gradient(#111202);
  background-size: cover;
  color: #ffffff;
}

@media (min-width: 600px) {
  body {
    overflow: hidden;
  }
}

#.server-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  padding: 24px;
  padding-bottom: 0;
  background-color: #f39c12;
  -webkit-box-shadow: 0px 6px #f1c40f;
          box-shadow: 0px 6px #f1c40f;
  text-align: center;
  cursor: pointer;
}

.server-info:hover::after {
  content: "Click to copy!";
  position: absolute;
  font-size: 30px;
  width: 300px;
  top: 100%;
  background-color: #f1c40f;
  padding: 12px 0;
  border-radius: 0px 0px 3px 3px;
}

@media (min-width: 600px) {
  .server-info:hover::after {
    font-size: 25px;
    width: 400px;
  }
}

.server-info.copied:hover::after {
  content: "Copied!";
}

.server-info p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 24px;
  background-color: #f1c40f;
  padding: 6px 0;
  -webkit-box-shadow: 0px 6px #aa8a0a;
          box-shadow: 0px 6px #aa8a0a;
  border-radius: 3px;
}

@media (min-width: 600px) {
  .server-info p {
    font-size: 25px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
  }
}

.logo {
  width: 300px;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 24px;
  margin-bottom: 0;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (min-width: 600px) {
  .logo {
    width: 400px;
    margin: auto 24px;
  }
}

.links {
  padding: 24px;
  padding-bottom: 48px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.links .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  width: 230px;
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.links .link:not(:last-child) {
  margin-bottom: 24px;
}

@media (min-width: 600px) {
  .links .link:not(:last-child) {
    margin-bottom: 0;
    margin-right: 99px;
  }
  .links .link:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}

.links .link img {
  width: 100%;
}

.links .link p {
  font-size: 35px;
  padding: 3px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
  text-shadow: 1px 1px 30px black, 0 0 50px black, 0 0 50px black;
  color: white
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/
body {
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn, .animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

.animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
