*,
:after,
:before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

body {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  background-color: #1f1e1e;
  
}

h1 {
  color: #f1f1f1;
}

.logo {
  width: 150px;
  height: 150px;
  display: block;
  margin: 2px auto;
  border-radius: 60%;
}

.links {
  display: block;
  max-width: 500px;
  margin: 0 auto 15px;
  margin-bottom: 5px;
  padding: 12px 15px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  color: black;
  border-radius: 10px;
  cursor: pointer;
}

.links .links:hover {
  background-color: #fff;
  animation: shake 1s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.links .links_first {
  border-bottom: 3px solid #80d6ff;
  box-shadow: inset 0 -4px 0 #80d6ff;
  border: 2px solid #80d6ff;
  background-color: #80d6ff;
}

.links .links_second {
  border-bottom: 3px solid #ffa093;
  box-shadow: inset 0 -4px 0 #ffa093;
  border: 2px solid #ffa093;
  background-color: #ffa093;
}

.links .links_third {
  border-bottom: 3px solid #bedde8;
  box-shadow: inset 0 -4px 0 #bedde8;

  border: 2px solid #bedde8;
  background-color: #bedde8;
}
    
.links .links_four {
  border-bottom: 3px solid #dd8dfd;
  box-shadow: inset 0 -4px 0 #dd8dfd;

  border: 2px solid #dd8dfd;
  background-color: #dd8dfd;
}

* {cursor: url(https://proxy.everskies.com/a/https://cur.cursors-4u.net/others/oth-9/oth800.cur), auto !important;}
