@font-face {
  font-family: Nunito;
  src: url(/Nunito.ttf);
}
@font-face {
  font-family: Raleway;
  src: url(/Raleway.ttf);
}

* {
  font-family: Nunito;
}

body {
  overflow-x: hidden;
}

a {
  display: block;
  height: 33px;
  width: calc(100vw - 70px);
  max-width: 800px;
  border: 2px solid #000;
  border-radius: 10px;
  margin: 10px auto;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: #000;
  background: linear-gradient(45deg, rgb(96, 232, 206), rgb(79, 112, 243));
  font-family: Nunito;
  transition: all 0.3s ease;
  filter: drop-shadow(0px 0px 0px #000);
}

a:hover {
  background: linear-gradient(45deg, rgb(25, 228, 191), rgb(40, 80, 241));
  transform: scale(1.1);
  filter: drop-shadow(5px 5px 10px #000);
  color: #fff;
  border: 2px solid white;
}

img {
  height: 100%;
  width: auto;
  vertical-align: -50%;
  margin-right: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(2px 2px 0px #0008);
}

a:hover img {
  transform: scale(2) rotateZ(-15deg) translate(-50%, -10px);
  filter: drop-shadow(5px 5px 10px #000d) drop-shadow(2px 2px 0px #f0f) drop-shadow(-2px -2px 0px #0ff);
}

main {
  height: max-content;
  min-height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(./links-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: grid;
  justify-items: center;
  align-content: center;
}

h1 {
  font-size: 70px;
  text-align: center;
  margin: 0;
  color: white;
  letter-spacing: 15px;
  text-shadow: 2px 2px 5px #000;
}

div.content {
  margin: 2em 0;
  max-width: 100vw;
}