/* Basic Reset & Global Styles */
:root {
  --bg-color: #121212;
  --text-primary: #e0e0e0;
  --text-secondary: #757575;
  --accent-color: #bb86fc;
  --link-bg: #1e1e1e;
  --link-bg-hover: #2a2a2a;
}

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

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
}

/* Main Container Layout */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

/* Content Typography */
.content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: var(--text-secondary);
}

/* GitHub Link Button Styling */
.github-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem; /* Space between icon and text */

  background-color: var(--link-bg);
  color: var(--text-primary);

  padding: 0.75rem 1.5rem;
  border-radius: 8px;

  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.github-link:hover {
  background-color: var(--link-bg-hover);
  transform: translateY(-3px); /* Slight lift effect on hover */
}

.github-link svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-color); /* Makes the icon pop */
}

/* Footer Styling */
footer {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .content h1 {
    font-size: 2.5rem;
  }
  .content p {
    font-size: 1rem;
  }
}
