/* CSS is how you can add style to your website, such as colors, 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." */

* {
 box-sizing: border-box; 
}

body {
  background: linear-gradient(180deg, yellow 5%, blue 35%, pink 10%, green 25%, brown 25%);
  font-family: Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}
