*{
	box-sizing: border-box;
}
body{
	margin: auto;
    background-color: #E5D8C8;
}
.caja1{
    height: 5em;
    display: flex;
    justify-content: center;
    padding: 2rem;
}
.caja2{
    height: 5em;
    display: flex;
    justify-content: center;
    padding: 1rem;
}
.caja3{
    height: 70vh;
    display: flex;
    justify-content: center;
    padding: 2rem;
    text-align: justify;
}
.caja4{
    display: flex;
    justify-content: center;
    height: 120vh;
    overflow-y: hidden;
}
.caja5{
    padding: 2rem;
    text-align: justify;
}
iframe {
    box-sizing: content-box;
    border: 1px solid black;
    width: 100%;
    height: 100%;
}
p, ul, li{
    color: #683C11;
}
.caja6{
    height: 10rem;
}

/* MediaQueries */
@media screen and (max-width: 380px) and (min-width: 50px){
    .caja4 {
        width: 100%;
    }
    .caja5 {
        width: 100%;
    }
}