@charset "UTF-8";
html {
  background: url(cover.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  background: transparent;
}

.oculto {
  display: none;
}

#layout {
  background: transparent;
  padding: 5px;
  align-items: center;
  position: relative;
  width: 98%;
  height: 100%;
  font-size: 13px;
  font-family: "Arvo", monospace;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px;
}

.caja {
  flex-grow: 3;
  /* Adapta el tamaño de la caja  al espacio del contenedor que disponga */
  height: 30vh;
  margin: 9px;
  border: 2px solid #f6a56a;
  border-radius: 2px;
  box-shadow: 0 0 15px black;
}

.caja:hover {
  box-shadow: 0 30px 18px -8px rgba(0, 0, 0, 0.1);
  transform: scale(1.05, 1.1);
  cursor: pointer;
}

.contenedor {
  background: #ecebeb;
  font-size: 15px;
  margin: 0 auto;
  font-family: "Arvo", monospace;
  color: #2d4b83;
  margin-top: 10px;
  width: 90%;
  padding: 10px;
  border: 2px solid #f6a56a;
  border-radius: 2px;
  box-shadow: 0 0 15px black;
}

.oculto {
  display: none;
}

form input[type=text],
form input[type=tel],
form input[type=email] {
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fafafa;
  margin: 8px 0;
  font-family: "Arvo", monospace;
}

footer {
  margin-top: 10VH;
  font-family: "Arvo", monospace;
}

.itemComentario {
  padding: 20px;
  border: 2px solid #222;
  margin: 10px;
  background: #ccc;
}

#itemComentario {
  font-size: 15px;
  justify-content: space-between;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px;
}

table {
  border-collapse: separate;
  margin-left: 20px;
}

/********************** MEDIA QUERYS RESPONSIVE BOOTSTRAP **********************/
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .itemComentario {
    margin: 5px;
    width: 100%;
    font-size: 12px;
  }

  table {
    display: block;
    overflow-x: auto;
  }

  .caja {
    height: 20vh;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .itemComentario {
    margin: 5px;
    width: 45%;
    font-size: 15px;
  }
}
/* Medium devices (tablets, 768px and up) */
/* Large devices (desktops, 992px and up) */
/* Large devices (desktops, 992px and up) */
@media (min-width: 1179px) and (max-width: 1248.98px) {
  footer {
    margin-top: 38VH;
  }
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1249px) {
  footer {
    margin-top: 45VH;
  }
}

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