
.Inicio{
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    align-items: center;
}

ul{
    display: flex;
    gap: 1.5em;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: deeppink;
    font-weight: bold;
}

h1{
    font-size: 3em;
}

span{
    color: deeppink;
}

#home{
    color: black;
}

.seccion{
    display: flex;
    justify-content: center;
    gap: 10em;
    margin: auto;
    align-items: center;

}

.texto{
    width: 600px;
    text-align: left;
    line-height: 1.5;
    font-size: 19px;
}

.texto p{
    margin-bottom: 3em;
}

img{
    width: 500px;
    height: 500px;
    object-fit: cover;
    max-width: 100%;
}

footer{
    background: rgba(128, 128, 128, 0.774);
    margin-top: 50px;
}

.todo{
    display: flex;
    padding: 2em;
    width: 1400px;
    justify-content: space-between;
    margin: 3em auto;
}

.iconos{
    font-size: 3em;
    width: 450px;
}

.iconos i{
    border-radius: 50%;
}

@media (max-width:1100px){
    .Inicio{
        display: flex;
        justify-content: space-evenly;
        max-width: 1000px;
        width: 100%;
        margin: auto;
        align-items: center;
    }

    ul{
        display: flex;
        gap: 1.5em;
    }

    li{
        list-style: none;
    }

    a{
        text-decoration: none;
        color: deeppink;
        font-weight: bold;
    }

    h1{
        font-size: 3em;
    }

    span{
        color: deeppink;
    }

    #home{
        color: black;
    }

    .seccion{
        flex-direction: column-reverse;
        gap: 1em;

    }

    .texto{
        width: 500px;
        text-align: left;
        line-height: 1.5;
        font-size: 19px;
    }

    .texto p{
        margin-bottom: 3em;
    }

    img{
        width: 500px;
        height: 500px;
        object-fit: cover;
    }

    footer{
        background: rgba(128, 128, 128, 0.774);
        margin-top: 50px;
        margin: 0 auto;
    }

    .todo{
        display: flex;
        width: 800px;
        justify-content: space-evenly;
        margin: 1em auto;
    }

    .iconos{
        font-size: 3em;
        width: 450px;
    }

    .iconos i{
        border-radius: 50%;
    }

}

@media (max-width:550px){

    .Inicio{
        flex-direction: column;
        width: 100%;
        gap: 1em;
        text-align: center;
    }

    ul{
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }

    .seccion{
        flex-direction: column;
        gap: 2em;
        padding: 1em;
    }

    .texto{
        width: 100%;
        font-size: 16px;
    }

    img{
        width: 100%;
        height: auto;
    }

    .todo{
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 2em;
        padding: 1em;
    }

    .iconos{
        width: 100%;
        text-align: center;
        font-size: 2em;
        display: none;
    }

    .parrafo{
        width: 100%;
        text-align: left;
    }

    h1{
        font-size: 2.2em;
    }

}