/* CSS Document */

.contenedor{
    position: relative;
    display: inline-block;
    text-align: center;
	width: 100%;
	max-width: 360px;
}
.texto-encima{
    color: white;
    position: absolute;
    top: 10px;
    left: 10px;
}
.centrado{
    width:100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
