/*transparent #000 in rgba*/
.background {
background: rgba(0, 0, 0, 0);
}
/*bg fr body */
background-image: url("../images/e7b335f7-pexels-photo-122244-large.jpeg");
background-repeat: no-repeat;
/*background-position: right top;*/
background-attachment: fixed;
/*gradient position*/
background: linear-gradient(45deg, red, blue);
background: linear-gradient(135deg, orange, orange 60%, cyan);
/*Learn more here: https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient*/
/*100% width and height minus specific size*/
min-height: calc(100vh - 64px);
max-height: calc(100vh - 64px);
/*Background-cover*/
.background-cover{
backgrobund: url('https://s-media-cache-ak0.pinimg.com/736x/71/ca/46/71ca46ee76ba28ec1898d22db930d066--pink-houses-dream-houses.jpg') no-repeat fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
/*shadow style*/
input[type=text] {
&:focus {
box-shadow: 0 0 10px #ffac32;
}
}
/*faded black from bottom to top*/
background-color: rgba(0,0,0,0.16);
background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.4));
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.4)));
background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.4));
background-image: -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.4));
background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.4));
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#66000000', GradientType=0);
background-color: transparent;