#contact {
  justify-content: center;
  position: relative;
}

.contact-container {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  gap: 2rem; 
  text-shadow: 0 0 5px rgba(255, 69, 0, 0.7);
  flex-direction: row;
}

.contact-image img {
  max-width: fit-content;
  height: auto; 
  border-radius: 10px;
}

.resume-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0; 
  border-radius: 10px;
  color: #FF4500; 
  font-family: 'Audiowide', sans-serif;
  text-shadow: 0 0 5px rgba(255, 69, 0, 0.7);
}

.resume-container a {
  text-decoration: none;
  color: #FF4500; 
  background: none; 
  border: 2px solid #FF4500; 
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
}

.resume-container a:hover {
  background-color: #FF4500; 
  color: #1a1a2e; 
}

.contact-heading-text {
  text-align: center;
  color: #FF4500;
  margin: 1rem 0; 
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .contact-image img {
    width: 100%; 
    max-width: none; 
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .resume-container {
    flex-direction: column; 
    gap: 0.5rem;
    margin: 1rem 0; 
  }

  .resume-container a {
    width: 100%; 
    text-align: center; 
  }
}