* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #4b2e83; /* Purple from logo */
  background-image: linear-gradient(
    135deg,
    #4b2e83 30%,
    #009fe3 100%
  ); /* Purple to blue from logo, purple moved further */
  min-height: 100svh;
  font-family: "Poppins", sans-serif;
}

.header {
  padding: 20px;
  padding-top: 40px;
  text-align: center;
}

.logo {
  max-width: 100px;
}

.links {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.links a {
  display: inline-block;
  width: 80%;
  max-width: 300px;
  padding: 10px 15px;
  background-color: #f0f0f0;
  color: #111111;
  text-decoration: none;
  border-radius: 100px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.links a img {
  height: 24px;
  width: 24px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 10px;
}

.links a:hover {
  background-color: #ffd166;
  color: #2f1f57;
  box-shadow: 0 10px 22px rgba(22, 12, 52, 0.32);
  transform: translateY(-2px);
}

.footer {
  margin-top: auto;
  padding: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.6em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
