body{
    display: flex; /* Usar flexbox */
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    flex-direction: column;
    height: 100vh; /* Altura total de la ventana */
    margin: 0; /* Eliminar márgenes */
    background-image: url(../img/bg.png); /* Imagen de fondo */
    color: white; /* Color de texto */
}

img{
    width: auto;
    height: 100px;
}

a{
    color: inherit;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    body {
        background-size: cover; /* Ajustar el tamaño de la imagen de fondo */
    }

    img {
        height: 100px; /* Tamaño original */
    }

   
}
