/* resume.css - targeted responsive tweaks for resume.html */

.popup-window iframe {
  width: 100%;
  height: 100%;
  border: none;
}

body {
  background-color: black;
  color: #00ffff;
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  line-height: 1.6;
}

a {
  color: #00ffff;
  text-decoration: underline;
}

a:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.contact-link {
  color: var(--neon-purple);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  text-shadow: 0 0 10px var(--neon-purple);
  transform: scale(1.05);
}

.neon-label {
  color: #ff00ff;
  font-weight: bold;
}

h1 {
  font-size: 2rem;
  text-align: center;
  color: #00ffff;
}

.section h2 {
  color: #ff00ff;
  font-size: 1.2rem;
  margin-top: 2rem;
}

.section p,
.section li {
  color: #00ffff;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}




