/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

* {
  box-sizing: border-box;
 
}

.separa { width:100%;
		  height:3px;
		  background-color: #91874F;
		  margin-top: 10px;
		  margin-bottom: 10px;}


body {
  font-family: 'Roboto', sans-serif;
  background: #F1F1F1;
  color: #635363;
}
tr { line-height: 1.8; }
td { width:2%;
     text-align:center; }


p  { line-height: 1.9;}
h2 { color: #5A4A42; }

.logo {
	width: 220px;
	height:150px;
	background-image:url("https://emjenaquera.es/wp-content/uploads/2023/05/Escola_Logo.png");
	background-size:contain;
	background-repeat:no-repeat;
	margin-left:-110px;
	position:relative;
	left:50%;
	}


/* Style the header */
.header {
  background-color: ;
  padding: 30px;
  text-align: center;
  font-size: 20px;
  color: #A18978;
  height: 180px;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
  height: 300px; /* Should be removed. Only for demonstration */
}

/* Left and right column */
.column.side {
  width: 25%;
  display:block;
}

/* Middle column */
.column.middle {
  width: 50%;
  height: inherit;
  border-radius: 10px;
  box-shadow:#666 0px 0px 5px;
  padding: 30px;

}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
.footer {
  background-color:;
  padding: 10px;
  text-align: center;
  font-size:9px;
  color:#999;
}
 input[type=reset], input[type=text] {
  background-color: #FFF;
  border: none;
  border-radius: 5px;
  width:80%;
  color: #AC9F71;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}
input[type=submit], input[type=button] {
  background-color: #CCC;
  width:100px;
  border: none;
  color: #FFF;
  border-radius: 5px;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
	
	}
button:hover] {
  background-color: #F93;
  
	}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
  .column.side { display:none;
  }
}