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

body {
  background: url("imagenes/fondo.png")  no-repeat center / cover;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  height: 600px ; 
}

.main {
  width: 80vw;
  margin: auto;
  display: flex;
  justify-content: center;
}

.titulo {
  
  color: #ffffff;
  text-shadow: 3px 6px #111010;
  margin-right: 50px;
  text-align: center;
  font-size: 50px;
  font-family:cursive;
  padding: 30px;

}

.titulo-box{
  padding: 30px;
  width: 30wv;
  margin-left: 200px;
  color: #061111;
  text-shadow: 3px 3px #ffffff;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  padding-left: 70px;
}

.box {
  padding: 20px;
  margin: 0 10px 0 10px;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  background-color: #c2bdbf;
  border-radius: 0.5em;
  width: 30vw;
  height: auto;
}

.btn {
  border: 0;
  color: white;
  font-weight: bold;
  background-color: gray;
  padding: 10px;
  margin-top: 10px;
  border-radius: 0.5em;
  cursor: pointer;
  transition: .2s ease;    
}
.btn:hover{
  transform: translate(-20%,-20%) scale(1.5);
  background-color: #f5dad2;
  color: #1C2833;
}

.text-input {
  border-radius: 0.5em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: block;
  padding: 0.5em;
  width: 100%;
  height: 50px; 
}

/*aqui conmienza el pie de pagina */
footer{
  position:absolute;
  width: 100%;
  bottom: 0;
  padding: 20px;
  clear: both;
  background: rgb(216, 183, 129);
  color: #111213 ;
  text-align: center;
  font-family: cursive;
}

.texto p { 
  flex-direction: row;
  float:none;
  margin-left:5px;
  font-family: cursive;
}


