@import url("https://fonts.googleapis.com/css2?family=Calligraffitti&family=Poppins:wght@400;600;700&display=swap");
font-family: "Calligraffitti", cursive;
font-family: "Poppins", sans-serif;

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100%;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to right, #0d0d0d, #6b6a6a);
}

.gold {
  color: #feb851;
}

.text-white {
  color: #fff;
}

#link:hover {
  opacity: 0.8;
}

.icons > i {
  margin: 0.5rem;
  border: none;
  transition: all 5s linear ease-out;
  font-size: 1.4rem;
}

.icons > i:hover {
  color: #feb851;
  cursor: pointer;
}
