:root {
	--verde_claro: #eeffcc;         /* ===== */
	--verde_semi_claro: #ccddaa;
	--verde_oscuro: #208415;        /* ===== */
	--blanco: #ffffff;              /* ===== */
	--negro: #000000;               /* ===== */
	--enlace: #ff9966;		    /* ===== */
	--amarillo_fondo: #fffff6;		/* =pie= */
	--rojo_enlace_hover: #ee9977;
	--textoTit: #aaffaa;
	--fondoTit: #ff00ff;
	--gris_claro: #f8f8f8;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family:verdana, arial, helvetica, sans-serif;
	background-color: var(--blanco);
	background-image: url('../imgs/tutores.png'), url('../imgs/tutores_3.png');
	background-repeat: no-repeat;
	background-position: center center;
/*	background-clip: border-box;*/
	color: var(--negro);
	display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a, a:link, a:visited {
	text-decoration: none;
}

/* cabecera */

.header {
	width: 100%;
	height: 86px;
	display: flex;
	justify-content: center;
    align-items: stretch;
	gap: 0;
}
.cabecera-logo {
    background-color: var(--verde_claro);
    max-width: 100px;
	height: 86px;
}
.cabecera-nombre {
	flex-grow: 8;
	background-color: var(--verde_oscuro);
	text-align: center;
	height: 86px;
    background: linear-gradient(to right, var(--verde_claro) 0%, var(--verde_oscuro) 5%, var(--verde_oscuro) 95%, var(--verde_claro));
}

/* fin cabecera */

#content {
	flex-grow: 1;
}
.botonera {
	margin-top: 80px;
	display: flex;
    flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
    min-height: 4rem;
}
.elboton {
	margin:30px;
	padding:20px;
	text-align:center;
	font-size:18px;
	font-weight: bold;
	background-color: var(--verde_oscuro);
	border:1px solid #ff9926;
	border-radius:10px;
	color: var(--enlace);
	display:inline-block;
}
.elboton:hover {
	background-color:#7f00ff;
	color:#eeffcc;
	cursor:pointer;
	text-decoration:none;
}
.elboton:active {
	background-color:#208415;
	color:#eeffcc;
	cursor:pointer;
}
.corregir {
	width:80px;
}
.borrar {
	width:140px;
}
.volveratests {
	width:140px;
}



.titulo {
	padding-top:17px;
	padding-bottom:17px;
	color:#660066;
	background-color:#ffffff;
	font-size:28px;
	font-style:normal;
	font-weight:bold;
	text-align:center;
}
.textotitulo {
	padding:10px;
	background-color:#dddd00;
	border:1px solid #dddd00;
	margin-top:30px;                /* margin-top estropea el aspecto */
}

.mano {
	cursor:pointer;
}

/* pie */

.footer {
	width: 100%;
	display: grid;
	grid-template-columns: 85px auto 85px;
	grid-template-rows: 26px 40px;
	gap: 0;
}

.pie-boton {
	background-color: var(--verde_oscuro);
	max-width: 85px;
	text-align: center;
	padding-top: 3px;
}

.pie-centro {
	background-color: var(--verde_oscuro);
	color: var(--blanco);
	text-align: center;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	padding-top: 5px;
}

.pie-img {
	background-color: var(--amarillo_fondo);
	max-width: 85px;
	text-align: center;
	padding-top: 5px;
}

.pie-img-centro {
	background-color: var(--amarillo_fondo);
	color: var(--oscuro);
	text-align: center;
	font-size: 10px;
	font-style: normal;
	font-weight:normal;
	padding-top: 15px;
}

/* fin pie */

/* modal */

.modal {
	display:none;
	position:fixed;
	z-index:1;
	padding-top:80px;
	left:350px;
	top:200px;
	width:600px;
	height:300px;
	overflow:auto;
	background-color: rgb(150,150,0);
	background-color: rgba(150,150,0,0.8);
}
.modal-content {
	background-color:#ffcccc;
	margin:auto;
	padding:20px;
	border:1px solid #888;
	width:80%;
}
#avisoContacto {
	font-size:14px;
	font-style:normal;
	font-weight:bold;
}
.close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
  
 /* fin modal */