html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: orange;
    position: relative;
    width: 95%;
    min-height: 100vh;
    background-color: rgb(10,20,37);
}


/*--copy right start here--*/
.copy-rights p {
    font-size: 1em;
    text-align: center;
    line-height: 1.7em;
    padding: 0px 15px;
    position: absolute;
    bottom: 10px; /* Distancia del borde inferior de la pantalla */
    width: 100%;
}

.copy-rights p a {
    color: #f3b208;
}



/* Fondo para computadora */
@media (min-width: 768px) {
    .fondo {
        background-image: url('fondo01.jpg');
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        height: 100%;
    }

}

/* Fondo para móvil */
@media (max-width: 767px) {
    .fondo {
        background-image: url('fondo02.jpg');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }

}

