@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    background-image: url('../img/fondo_general.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

        .container {
            max-width: 900px;
            margin: auto;
            background-color: rgba(255, 255, 255, 0.6);
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        h1, h2 {
            color: #333;
        }
        p, ul {
            color: #000000;
        }