body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 40px;
  color: #333;
}

.container {
  max-width: 400px;
  margin: auto;
  margin-top: 4%;
  text-align: center;
}

#avatar {
  border-radius: 50%;
  width: 128px;
}

.links-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
  margin-top: 50px;
}

.link-card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.link-card:hover {
  transform: scale(1.03);
  background: #eaf4ff;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.link-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.banner {
  position: absolute;
  filter: blur(10px);
  z-index: -1;
  top: 0;
  left: 0;
  height: 500px;
  width: 100vw;
  background-image:
    linear-gradient(to bottom, rgba(244,244,244,0.5) 0%, #f4f4f4 100%),
    url('./banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
