body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #333;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.links a {
  flex: 1 1 200px;
  max-width: 250px;
  margin: 5px;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
}

/* Contact Me button */
.links a.contact {
  background-color: #333333;
}

.links a.contact:hover {
  background-color: #555555;
}

/* LinkedIn button */
.links a.linkedin {
  background-color: #0077B5;
}

.links a.linkedin:hover {
  background-color: #005f8d;
}

/* Examples of My Work button */
.links a.work {
  background-color: #D35400;
}

.links a.work:hover {
  background-color: #a84300;
}

@media (max-width: 480px) {
  .links {
    flex-direction: column;
    align-items: center;
  }

  .links a {
    max-width: 100%;
    flex: none;
  }
}
@keyframes flicker {
  0%, 100% { opacity: 1; filter: brightness(1); }
  40% { opacity: 0.3; filter: brightness(0.5); }
  50% { opacity: 1; filter: brightness(1.5); }
  60% { opacity: 0.8; filter: brightness(1.2); }
}

.flicker-effect { animation: flicker 1.5s ease-in-out forwards; }


.footer {
  margin-top: 60px;
  color: #777;
  text-align: center;
}

.footer-text {
  font-size: 0.75rem; /* Smaller than default */
  margin: 0;
}

.footer-icons {
  margin-top: 10px;
}

.footer-icons a {
  margin: 0 10px;
  display: inline-block;
}

