* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.servicio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 20vw;
  height: 30vh;
  border: 5px solid #585854;
  background-color: #c0bbbb;
}

.servicio button {
  width: 10vw;
  height: 5vh;
  border-radius: 10px;
  background-color: #fdfdf6;
}
.servicio button:hover {
  color: white;
  background-color: black;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #636361;
}

.title {
  margin: 1em;
}

ul {
  list-style: none;
}

.nav {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  margin: 1em;
}

.nav:hover {
  border: 2px solid black;
  border-radius: 10px;
  padding: 5px;
}

.subTitle {
  text-align: center;
  margin: 1em;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#buy {
  width: 100px;
  height: 50px;
  color: white;
  background-color: green;
  margin: 1em;
}

#buy:hover {
  color: black;
  background-color: yellow;
}

@media (max-width: 768px) {
  .servicios {
    flex-direction: column;
    align-items: center;
  }

  .servicio {
    width: 90%;
    height: auto;
  }

  .servicio button {
    width: 80%;
    height: 40px;
  }
}
