/* Estilos generales */
body {
    width: 99%;
    margin: 10px auto;
}

#image h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 4rem;
    color: whitesmoke;
    text-align: center;
    position: relative;
    z-index: 1;
}

#image h4 {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: x-large;
    color: whitesmoke;
    text-align: center;
    position: relative;
    z-index: 1;
}

#logo { 
    display: flex;   
    justify-content: center;
    margin-bottom: 10px;  
    max-height: 100px;
    width: auto;
}

#image {
    background-image: url(./assets/imgHome1.jpg);       
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 200px;
    position: relative;
}

.pellicola {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.50);
    position: absolute;
    top: 0;
    left: 0;
}

#footer {
    display: flex;
    justify-content: center;
    align-items: center;
    color: whitesmoke;
    position: relative;
    z-index: 1;
}

#textFooter {
    text-decoration: none;
    color: whitesmoke;
    margin-right: 10px;
}

#logoFooter {
    max-width: 80px;
}

#Idexa {
    display: flex;   
    justify-content: center;
    margin-top: 5%;
}

/* Media Queries para dispositivos móviles */
@media (max-width: 768px) {
    #image {
        padding: 100px 20px;
    }
    
    #image h1 {
        font-size: 2.5rem;
    }

    #image h4 {
        font-size: large;
    }

    #textFooter {
        margin-right: 5px;
    }

    #logoFooter {
        max-width: 60px;
    }
}

@media (max-width: 480px) {

    body {
        width: 99%;
        margin: 10px auto;
    }

    #image {
        padding: 100px 10px;
    }

    #logo {                
        height: 50px ;
        width: auto;
    }

    #image h1 {
        font-size: 2rem;
    }

    #image h4 {
        font-size: medium;
    }

    #textFooter {
        margin-right: 3px;
    }

    #logoFooter {
        max-width: 50px;
    }
}