body {
  font-family: 'Lato', sans-serif;
}

h1 {
  font-family: "Comic Sans", cursive;
  font-size: x-large;
  text-align: center;
}

h5 {
  font-family: "Comic Sans", cursive;
  text-align: center;
}

a {
  font-size: small;
}

.nav-menu {
  display: inline-block;
  background: yellowgreen;
  color: white;
  padding: 10px 30px;
  text-decoration: none;
}

.nav-section {
  display: flex;
  background: green;
  padding: 10px;
  justify-content: space-around;
}

.nav-button {
  background: coral;
  display: none;

}

.container {
  margin: 0 auto;
  width: 90%
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.columna {
  background: rgb(218, 214, 214);
  color: #333;
  border: 1px solid #333;
  margin: 0px auto;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 10px 10px 5px rgb(145, 143, 143);
  width: 24%;
  box-sizing: border-box;
}

.columna_producto {
  background: rgb(218, 214, 214);
  color: #333;
  border: 1px solid #333;
  margin: 0px auto;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 10px 10px 5px rgb(145, 143, 143);
  width: 80%;
  box-sizing: border-box;
}

.precio {
  font-size: 50px;
  color: lightskyblue;
}

.btnPrecio {
  display: block;
  text-decoration: none;
  background: rgb(243, 161, 9);
  padding: 10px;
  color: white;
  border: 1px;
  border-radius: 5px;
  margin-bottom: 10px;
}




@media(max-width: 1024px)
{
  .columna {
    width: 45%;
    margin-bottom: 10px;
  }

  .nav-section {
    display: flex;
    flex-direction: column;
    background-color: aqua;
    padding: 10px 0;
    margin: 10px;
  }

  .nav-button {
    display: inline-block;
  }

  .desaparece {
    display: none;
  }

  h1 {
    font-family: "Comic Sans", cursive;
    text-align: center;
    font-size: medium;
  }
  h5 {
    font-family: "Comic Sans", cursive;
    text-align: center;
    font-size: medium;
  }

  a {
    font-size: small;
  }

}




@media(max-width: 600px) {
  .columna {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-section {
    display: flex;
    flex-direction: column;
    background-color: aqua;
    padding: 10px 0;
    margin: 10px;
  }

  .nav-button {
    display: inline-block;
  }

  .desaparece {
    display: none;
  }

  h1 {
    font-family: "Comic Sans", cursive;
    text-align: center;
    font-size: medium;
  }
  h5 {
    font-family: "Comic Sans", cursive;
    text-align: center;
    font-size: medium;
  }

}

@media(max-width: 410px) {
  .columna {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-section {
    display: flex;
    flex-direction: column;
    background-color: aqua;
    padding: 10px 0;
    margin: 10px;
  }

  .nav-button {
    display: inline-block;
  }

  .desaparece {
    display: none;
  }

  h1 {
    font-family: "Comic Sans", cursive;
    text-align: center;
    font-size: small;
  }
  h5 {
    font-family: "Comic Sans", cursive;
    text-align: center;
    font-size: small;
  }

  h2 {
    font-size: small;
  }

}