property int rand: Math.random()* 100
property bool win: false

Image{
source: "Background.jpg"
anchors.fill: parent
}

LinearGradient {
anchors.fill: parent
start: Qt.point(0, 0)
end: Qt.point(350, parent.height)
gradient: Gradient {
GradientStop { position: 0.0; color: "#600000bb" }
GradientStop { position: 0.5; color: "#60000077" }
GradientStop { position: 1.0; color: "#60202020" }
}
}