@font-face {
  font-family: Jura;
  src: url(fonts/Jura-VariableFont_wght.ttf);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;
  margin: 0;
  font-family: Jura;
}
.container {
  display: flex;
  height: 100vh;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.content {
  padding: 10px;
  max-width: 600px;
}

.heading {
  color: black;
  font-size: 2rem;
  text-align: center;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.links a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  z-index: 1;
  margin: 5px 0;
}

.links a:after {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  bottom: 0;
  right: 1.25rem;
  left: 1.25rem;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  transform-origin: bottom center;
  z-index: -1;
}

.links a:hover {
  color: #2d2d2d;
}
.links a:hover::after {
  right: 0;
  left: 0;
  height: 100%;
}
