body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: hwb(239 0% 59%);
  background-image: url(`C:\Users\FacuN\OneDrive\Escritorio\Portafolio\imagenfinal.jpg`); /* Ruta de la imagen de fondo */
  background-size: cover; /* Ajusta el tamaño de la imagen para cubrir todo el fondo */
  background-position: center; /* Centra la imagen en el fondo */
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

header {
  background: #333;
  color: #fff;
  padding-top: 30px;
  min-height: 70px;
  border-bottom: #2e2e2e 3px solid;
}

header a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
}

header ul li {
  display: inline;
  padding: 0 20px 0 20px;
}

section {
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border: #ccc 1px solid;
  border-radius: 5px;
}

#trabajos .proyectos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

#trabajos .proyecto {
  width: calc(50% - 20px);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  #trabajos .proyecto {
    width: 100%;
  }
}

img {
  max-width: 100%;
  height: auto;
}

form {
  margin-top: 20px;
}

form label {
  display: block;
  margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

form button:hover {
  background: #555;
}

footer {
  text-align: center;
  padding: 10px;
  background: #333;
  color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
}
