/* CSS is how you can add style to your website, souch ascolors, fonts, and positioning of your
 HTML content. To learn how to do something,just try searching Google for questions like
 "how to change link color." */
 
body { 
  background: rgba(255,197,163,1);
background: -moz-linear-gradient(left, rgba(255,197,163,1) 0%, rgba(255,197,163,1) 29%, rgba(255,84,5,1) 53%, rgba(255,197,163,1) 80%, rgba(255,197,163,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,197,163,1)), color-stop(29%, rgba(255,197,163,1)), color-stop(53%, rgba(255,84,5,1)), color-stop(80%, rgba(255,197,163,1)), color-stop(100%, rgba(255,197,163,1)));
background: -webkit-linear-gradient(left, rgba(255,197,163,1) 0%, rgba(255,197,163,1) 29%, rgba(255,84,5,1) 53%, rgba(255,197,163,1) 80%, rgba(255,197,163,1) 100%);
background: -o-linear-gradient(left, rgba(255,197,163,1) 0%, rgba(255,197,163,1) 29%, rgba(255,84,5,1) 53%, rgba(255,197,163,1) 80%, rgba(255,197,163,1) 100%);
background: -ms-linear-gradient(left, rgba(255,197,163,1) 0%, rgba(255,197,163,1) 29%, rgba(255,84,5,1) 53%, rgba(255,197,163,1) 80%, rgba(255,197,163,1) 100%);
background: linear-gradient(to right, rgba(255,197,163,1) 0%, rgba(255,197,163,1) 29%, rgba(255,84,5,1) 53%, rgba(255,197,163,1) 80%, rgba(255,197,163,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc5a3', endColorstr='#ffc5a3', GradientType=1 );