/* Estilos generales */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}
.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 2rem 0;
    text-align: justify;
}

section h2 {
    margin-bottom: 1rem;
}

/* Estilos para la sección "Acerca de mí" */
#about {
    background-color: #fff;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: auto auto;
    max-width: 8 0%;
}



/* Estilos para la sección "Proyectos" */
#projects {
    background-color: #f9f9f9;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.project-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 300px;
    text-align: left;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* Estilos para la sección "Habilidades" */
#skills {
    background-color: #fff;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.skill img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}
.skills h2{ 
text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #222;
}
/* Estilos para la sección "Contacto" */
#contact {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 800px;
}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact label {
    text-align: left;
}

#contact input,
#contact textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#contact button {
    padding: 0.5rem 1rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Estilos para el pie de página */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}


.feature-section {
    padding: 4rem 0;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.feature-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #222;
}

.feature-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-text {
    flex: 1;
    padding: 2rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.feature-text ul {
    list-style: none;
    padding: 0;
}

.feature-text ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feature-text ul li i {
    color: #007BFF;
    margin-right: 0.5rem;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.hero {
   background-color: red;
  /* 
  height: 100vh;
 background: linear-gradient(rgba(33, 150, 243, 0.4), rgba(25, 118, 210, 0.4)),
  url("/TechSolutions.jpg");
   background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
 
  padding: 1rem;

*/
}

section .titulo{
    background-color: red;
}




