/* -------------------- Fondo de pantalla -------------------- */

body {
    text-align: center;
    font-family: Tahoma;
    background-image: url(../IMG/fondo.PNG);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}





/* -------------------- Títulos -------------------- */

h1 {
    width: fit-content;
    color: black;
    padding: 10px 20px;
    margin: 20px auto;
    border-radius: 60px;
    box-shadow: 5px 5px 0px darksalmon; 
}





/* -------------------- Pie de página -------------------- */

footer {
    width: 98.39%;
    font-size: 12px;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000;
}





/* -------------------- Regresar -------------------- */

#return { /* botón */
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    margin: 20px;
    border-style: outset;
    border-width: 4px;
    border-color: violet; 
    background-color: pink;
}

#return:hover { /* efecto */
    transform: scale(1.2);
    transition: .5s;
}

#home { /* botón */
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    margin: 20px;
    border-style: outset;
    border-width: 4px;
    border-color: cadetblue;
    background-color: lightblue;
}

#home:hover { /* efecto */
    transform: scale(1.2);
    transition: .5s;
}