*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
section{
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

section h1{
    margin-bottom: 20px;
}

section p {
    margin-bottom: 15px;
}

/*####HOLA#####
ver el archivo hello.css*/


/*####Conocimiento#####
ver el archivo skills.css*/

/*####QUOTE#####*/
.quoteContent{
    width: 100vw;
    height: 60vh;
    padding: 60px;
    background-color: #EDCB96;
    color: #FDFDFD;
    font-style: italic;
    display: flex;
    justify-content: center;
    align-items: center;
}
.quoteContent p{
    line-height: 2em;
}
.quoteContent i{
    color: #FDFDFD;
    margin-bottom: 20px;
}

/*####Proyecto#####
ver el archivo project.css*/

/*####CONTACTO#####
ver el archivo contact.css*/

/*####Footer#####
ver el archivo footer.css*/

@media screen and (max-width: 500px) {
    section{
        padding-left: 0%;
        padding-right: 0%;
    }
    .quoteContent{
        display: none;
    }
}   