<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css?family=Montserrat|Montserrat+Alternates|Poppins&amp;display=swap');
	*{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: 'Montserrat Alternates', sans-serif;
	}
    body {
        background: url(img/remo.jpg);
        background-size: 80vw 80vh;
        background-repeat: no-repeat;
        background-position: center 115px; /* Ajusta la posiciÃ³n de la imagen hacia abajo */
        margin: 0;
    }
    
    .capa {
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
        top: 0;
        left: 0;
    }

    .contenedor {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 13vh; /* Ajusta la altura segÃºn sea necesario */
    }
    
    .logo img {
        width: 120px; /* Ajusta el ancho segÃºn sea necesario */
        height: auto; /* MantÃ©n la proporciÃ³n del logo */
    }
    
	</pre></body></html>