* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #121111;
  color: #000000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

nav {
  background-color: #1565c0;
  text-align: center;
  padding: 10px 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
}

h1, h2, h3 {
  color: #1565c0;
  margin-bottom: 10px;
}

ul {
  padding-left: 20px;
  margin-top: 0;
}

li {
  margin-bottom: 8px;
}

header {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.texto-header h1,
.texto-header p {
  margin: 0;
}

.foto-header img {
  max-width: 150px;
  height: auto;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }
  nav a {
    display: block;
    margin: 8px 0;
  }
  .foto-header img {
    max-width: 120px;
  }
}
footer {
  text-align: center;
  background-color: #eeeeee;
  padding: 15px 10px;
  font-size: 14px;
  margin-top: 40px;
  width: 100%;
}

.footer {
  color: black;
}

.container {
  margin: 20px auto;
  padding: 0 15px;
}

.img-inicio {
  width: 250px;
  height: 200px;
}

.history {
  font-size: large;
  color: #ffffff;
}

.title {
  color: white;
}

.imagen-destacada {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.galeria-calzado {
  display: flex;
  flex-direction: column;
}

.zapas {
  width: 300px;
  height: 190px;
  animation: parpadeo 0.5s infinite linear;
  border-radius: 10px;
}

@media screen and (min-width: 700px) {
  .galeria-calzado {
    flex-direction: row;
    justify-content: space-evenly;
  }
}
li, p {
  color: white;
}

@keyframes parpadeo {
  0% {
    box-shadow: 0 0 5px #fff;
  }
  50% {
    box-shadow: 0 0 15px #fff;
  }
  100% {
    box-shadow: 0 0 5px #fff;
  }
}
.paletas {
  margin: 80px;
  animation: parpadeo 0.5s infinite linear;
  border-radius: 10px;
}

@keyframes parpadeo {
  0% {
    box-shadow: 0 0 5px #fff;
  }
  50% {
    box-shadow: 0 0 15px #fff;
  }
  100% {
    box-shadow: 0 0 5px #fff;
  }
}
form {
  margin-top: 20px;
  max-width: 400px;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: white;
}

form input,
form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1em;
}

form button {
  background-color: #1e88e5;
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover,
form button:focus {
  background-color: #1565c0;
}

/*# sourceMappingURL=style.css.map */
