<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* AÃ±adido para incluir el borde en el cÃ¡lculo del tamaÃ±o */
}

html, body {
    height: 100%;
}

.contieneLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    height: 10vh; /* Ajusta la altura segÃºn tus necesidades */
}

.contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 80vh; /* Ajusta la altura segÃºn tus necesidades */
}

.peugeot, .citroen, .contacto, .caja {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 20px;
    height: 100%; /* Para que ocupen toda la altura del contenedor */
}

.peugeot img, .citroen img {
    width: 100%; /* Para que la imagen ocupe todo el espacio disponible */
    height: auto; /* Para mantener la proporciÃ³n de la imagen */
}

.peugeot img:hover, .citroen img:hover {
    opacity: 0.5;
}

.fcc-btn {
    background-color: #040842;
    color: white;
    padding: 10px 80px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.fcc-btn:hover {
    background-color: #223094;
    opacity: 0.5;
}

footer {
    background-color: #040842;
    padding-top: 10px;
    color: white;
    height: 10vh; /* Ajusta la altura segÃºn tus necesidades */
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

/* Consulta de medios para tabletas */
@media only screen and (max-width: 768px) {
    .contenedor {
        height: 60vh; /* Ajusta la altura segÃºn tus necesidades para tabletas */
    }
}

/* Consulta de medios para dispositivos mÃ³viles */
@media only screen and (max-width: 480px) {
    .contieneLogo {
        margin-top: 10px;
    }

    .contenedor {
        height: 50vh; /* Ajusta la altura segÃºn tus necesidades para mÃ³viles */
    }

    .peugeot, .citroen, .contacto, .caja {
        margin: 10px;
    }

    .fcc-btn {
        padding: 5px 40px;
    }

    footer {
        height: 8vh; /* Ajusta la altura segÃºn tus necesidades para mÃ³viles */
    }
}</pre></body></html>