*{
    margin: 0;
    padding: 0;
}
body{
    background: url(../imagenes/fondo.png);
}
.contenedor_general{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.vintage_arriba{
    width: 100%;
/*    height: 300px;*/
}
.vintage_arriba img{
    width: 100%;
}
.contenido_medio{
    margin: auto;
    width: 60%;
    height: 60%;
    display: flex;
    margin-top: 0;
    
    flex-direction: row;
    align-items: center;
    align-content: center;
    
}
.texto_demo{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.texto_demo .text_demo{
    font-family: 'Roboto',sans-serif;
    font-size: 72px;
    color: #662D91;
    font-weight: 700;
}
.texto_demo .text_content{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 48px;
    color: #C1272D;
}
.botones{
    margin-left: 30%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.botones img{
    box-shadow: 3px 3px green;
    
}

.vintage_abajo{
    width: 100%;
    bottom: 0;
    position: absolute;
}
.vintage_abajo img{
    width: 100%;
}
.botones img:hover{
    opacity: 0.7;
    cursor: pointer;
}