.container{
	display: flex;
	flex-wrap: wrap;
    flex: 1;
}
.containerB{
	display: flex;
	flex-wrap: wrap;
    width: 100%;
    height: 60vh;
    justify-content: center;
    align-items: center;

    background-image: url("https://image.prntscr.com/image/c73e498d140842a2b88cedc2a221a4f7.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50% 80%;
    position: relative;
}
.botones{
    margin: 10px;
}
.dialog{
    font-size: 10px;
    text-align: center;
}
.description{
    margin-top: 0;
    margin: 30px;
    padding: 20px;
}
.titulos{
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; 
    background-color: #ff9800;
    border-radius: 50px;
}
.titulo{
    margin-left: 20px;
    font-size: 24px;
    color: #f2f2f2;
}

.modules {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.module {
	padding-left: 10px;
	padding-right: 10px;
	flex-grow: 1;
	width: 40%;
}

.pdowninfo {
    display: flex;
    flex-flow: wrap;
    justify-content: space-around;
}

.pleft, .pright {
    width: 45%;
}

.imagen {
    width: 100%;
    display: flex;
    justify-content: center;
}

.imagen img {
    object-fit: contain;
    max-width: 100%;
}

@media only screen and (max-width: 850px) {
	.module {
		width: 100%;
    }
    
    .pleft, .pright {
        width: 90%;
    }
}