/* Contenido de styles.css */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('image/fondo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
}

.logo {
    max-width: 80%;
    height: auto;
    margin-top: 40vh; /* La distancia que pongo del logo respecto arriba */
}

#redes-container {
    margin-top: auto; /* las redes abajo */
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.redes-sociales img {
    width: 40px;
    margin: 0 10px;
}

#mensaje-final {
    margin-top: 20px;
}

@media (max-width: 600px) {
    #logo {
        width: 80%;
        margin-top: 40vh; 
    }

    #redes-container {
        margin-top: auto;
    }
}
