
body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background-color: #0d1117;
  color: #e6edf3;
}
.highlight {
  color: #00ff99;
}
.structured-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.structured-avatar {
    width: auto;
    height: 300px;
    object-fit: contain;
    border-radius: 50%;
}
.structured-text h1 {
  margin: 0;
  font-size: 2.2rem;
}
.structured-text ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.structured-text ul li {
  margin-bottom: 0.25rem;
  color: #00ff99;
}
.parallax {
  background: url('../images/parallax-codigo.png') center / cover no-repeat fixed;
  padding: 5rem 2rem;
  text-align: center;
}
.parallax2 {
  background: url('../images/parallax-codigo2.png') center / cover no-repeat fixed;
  padding: 5rem 2rem;
  text-align: center;
}
.overlay {
background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 12px;
    padding-top: 0.5rem;
max-width: 800px;
    margin: auto;
 
}
.sobre-mi {
  max-width: 800px;
  margin: auto;
  text-align: justify;
}
.main-section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.card {
  background-color: #161b22;
  border-radius: 10px;
  padding: 1rem;
  width: 300px;
  max-width: 300px;
  text-align: center;
}
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}
.card h3 {
  margin: 1rem 0 0.5rem;
}
.card a {
  display: inline-block;
  margin-top: 1rem;
  background-color: #238636;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
}
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea {
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}
button {
  background-color: #238636;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}
.success-message {
  color: #00ff99;
  font-weight: bold;
  text-align: center;
}
.social a {
  margin: 0 1rem;
  color: #58a6ff;
  text-decoration: none;
  font-size: 1.1rem;
}


.card a i {
  margin-right: 0.5rem;
}

.social-icons i {
  font-size: 1.8rem;
  color: #00ff99;
  transition: transform 0.2s;
}
.social-icons i:hover {
  transform: scale(1.1);
  color: #58a6ff;
}

.social-icons a {
padding:15px;
}

.card a:hover,
button:hover {
  background-color: #58a6ff;
  transform: scale(1.05);
  transition: all 0.3s ease;
}
