@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins:wght@500&display=swap");
body {
  font-family: Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #1a1a1a;
  color: #ffffff;
  margin: 0;
}

header {
  text-align: center;
  margin-bottom: 50px;
  position: absolute;
  top: 3vh;
}

p {
  color: #d4d4d4;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 1px;
  background: linear-gradient(
    to right,
    #ff0000,
    #ff8000,
    #ffff00,
    #00ff00,
    #0000ff,
    #4b0082,
    #9400d3
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow 5s linear infinite;
}

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

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  justify-content: center;
  align-items: center;
}

.fab {
  margin-right: 5px;
  font-size: x-large;
}

a {
  text-decoration: none;
  color: #ffffff;
}
a:hover {
  color: #0011ff;
}

footer {
  position: absolute;
  bottom: 10px;
  text-align: center;
  font-size: 14px;
  color: #555;
}
