body {
    background-color: goldenrod;
    /*background-image: url("img/cine_de_pixabay_2.png");*/
    background-size: 70%;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;

    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.5em;
    color: blue;
    cursor: crosshair;
}

h1,
h2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

img {
    /*   height: 20rem; */
    width: 20rem;
}

.botones>a {
    display: flex;
    background-color: #199319;
    color: white;
    padding: 15px 25px;
    border: 1px solid red;
    text-decoration: none;
    border-radius: 3rem;
    font-size: 2rem;
    margin: 5px;
}

.botones>a:hover {
    background-color: #052b05;
    color: aqua;
}

input {
    display: flex;
    margin: 0 auto;
    /* necesito esta linea y la anterior para centrar los input: con una de las dos sin la otra no lo hace */
    width: 70%;
    height: 4rem;
    color: purple;
    background-color: antiquewhite;
    justify-content: center;
    /* este se aplica al boton de enviar */
    text-align: center;
    /* este se aplica a los input donde escribo, no al del botón enviar */
    border-radius: 12px;
    padding: 4px;
    border: 1px solid cyan;
}

.enviar {
    background-color: yellowgreen;
    cursor: pointer;
    font-size: larger;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-decoration: underline;
    text-decoration-color: brown;
    width: 20%;
}

input:not(.enviar):hover {
    background-color: aliceblue;
}

header {
    margin: 0 auto;
    width: 50%;
    color: purple;
    background-color: yellowgreen;
    font-size: larger;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: italic;
}

/* TABLAS: */

td {
    background-color: cornflowerblue;
   border: 1px solid #052b05; 
   padding: 1rem;
}

tr:not(:first-child) {
    border: 3px solid green;

}

table {
    border: 12px;
    border-collapse: collapse;
    /* cellspacing: 2px; cellpadding:2px; */
    
}

#volver {
    position: sticky; /* no lo está haciendo */
    top: 20px;
}