html{
  scroll-behavior: smooth; /*a lo mejor no*/
  box-sizing: border-box; /*a lo mejor no*/
}
body{
  margin: 0;
  padding: 0;
  background-color: rgb(237, 204, 146);
  height: 100%;
  display: block;
  font-family: Arial;
}
header{
  border: 0;
  padding: 0;
  background-color: rgb(122, 15, 11);
  font-family:'Luckiest Guy';
  height: auto;
  width: 100%;
  margin-top: -10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
footer{
  background-color: rgb(122, 15, 11);
  height: 440PX;
  clear: both;
  color:white;
  text-align: center;
  justify-content: center; 
}

footer a {
  /*text-decoration: none;*/
  color: white;
}

p{
  margin-right: 50px;
  margin-left: 50px;
  text-align: justify;
}

.navegador{
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.navegador a{
  color: rgb(237, 204, 146);
  font-size: 40px;
  padding: 20px 30px 20px 30px;
  text-decoration: none;  
}

.navegador a:hover {
  color: rgb(255, 225, 150);
}

nav{
  margin-top: 0;
}

.imgIzq{
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.imgDrch{
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
}

#banner{
  width:100%;
  height:auto;
  margin: 0;
  padding: 0;
}

#scrollup{
  position:fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}


.policity{
  max-width: 100%;
  display: flex;
  flex: 80%;
  margin: 0 auto;
}

.formdiv{
  float: left;
  width:45%;
}

.textpolicity{
  max-width: 400px;
  width: 45%;
  height: 285px;
  float: left;
  border: 1px solid white;
  overflow-y: scroll; /* solo scroll vertical */
}
.textpolicity p{
  color: white;
  padding: 10px;
}

td{
  vertical-align: top;
}
textarea {
  resize: none;
}
table {
  margin-left: auto; /* Empuja la tabla hacia la derecha */
  margin-right: 5%;
  text-align: left;
  border-spacing: 0 10px;
  color: white; 
  padding: 0 10px;
  border-radius: 5PX;
}

form input{
  background-color: white;
}

/*Movil*/
@media only screen and (max-width:580px){
  .navegador a {
    font-size: 10px;
    padding: 15px 10px 15px 10px;
  }

  .formdiv{
    float: left;
    width: 100%;  
  }

  table {
    margin-left: auto; /* Empuja la tabla hacia la derecha */
    margin-right: auto;
    text-align: left;
    border-spacing: 0 10px;
  }

  .textpolicity{
    width: 90%;
    margin: 20px;
    margin-left: auto; /* Empuja la tabla hacia la derecha */
    margin-right: auto;    
  }
  .policity{
    max-width: 100%;
    display: flex;
    margin: 0 auto;
    background-color: rgb(122, 15, 11);
  }

  footer{
    height: 800PX;
  }

  p{
  margin: 50px;
  text-align: justify;
}

}
/*Tablet*/
@media only screen and (min-width:481px) and (max-width:768px){
  .navegador a {
    font-size: 25px;
    padding: 20px 15px 20px 15px;
  }
  .formdiv{
    float: left;
    width: 100%;  
  }

  table {
    margin-left: auto; /* Empuja la tabla hacia la derecha */
    margin-right: auto;
    text-align: left;
    border-spacing: 0 10px;
  }

  .textpolicity{
    width: 90%;
    margin: 20px;
    left:auto;
    right:auto;
    
  }
  .policity{
    max-width: 100%;
    display: flex;
    margin: 0 auto;
    background-color: rgb(122, 15, 11);
  }
  footer{
    height: 750PX;
  }

  p{
  margin: 50px;
  text-align: justify;
}
  
}
/*PC*/
@media only screen and (min-width:769px){ /*Si me muevo hasta 960*/

}