/* Full-screen colorful background */
body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    max-width: 75%;
    margin: auto;
    justify-content: center;
}


/* Big, bold title */
h1#main-title {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    animation: colorChange 5s infinite, pulse 1.5s infinite;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}

h1#main-title.big-title {
    font-size: 8rem;
}

/* Smaller text styling */
p {
    font-size: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Link Cards Container */
.links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    padding: 1rem;
}

/* Link Cards Styling */
.link-card {
    flex: 1 1 250px; /* grow/shrink but base is 250px */
    max-width: 90vw; /* don’t overflow on small screens */
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    width: 250px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover effect for link cards */
.link-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Keyframes for color change */
@keyframes colorChange {
    0% { color: #ff6f91; }
    25% { color: #ff9671; }
    50% { color: #ffc75f; }
    75% { color: #f9f871; }
    100% { color: #ff6f91; }
}

/* Keyframes for pulsing effect */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.site-footer {
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
  font-size: 0.9em;
  color: #888;
  display: flex;
  justify-content: center; /* or space-between / flex-start */
  align-items: center;
  gap: 1rem;
}

.github-icon {
  height: 30px;
  width: 30px;
  vertical-align: middle;
}

.github-link {
  display: inline-block;
  vertical-align: middle;
}