/* 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." */

body {
  background-color: white;
  color: #1D1442;
  font-family: "Times New Roman", Times, serif;
  margin-bottom: 40px;
}

.site-footer {
  background:linear-gradient(to bottom, #FFFFFF, #F4BEE7);   /* tło stopki */
  padding: 15px 20px;          /* odstępy wewnątrz */
  padding-top: 20px;   /* odstęp wewnątrz stopki od góry */
  margin-top: 40px; 
  text-align: center;          /* wyśrodkowanie tekstu */
  font-size: 10px;             /* trochę mniejsza czcionka */
  border-top: 1px solid #ccc;  /* cienka linia u góry */
}

.site-footer a {
  padding-top: 20px;   /* odstęp wewnątrz stopki od góry */
  margin-top: 40px; 
  text-decoration: none;
}

.site-footer a:hover {
  padding-top: 20px;   /* odstęp wewnątrz stopki od góry */
  margin-top: 40px; 
  text-decoration: underline;
}

body, a, button, img {
  cursor: url("cursor.png") 0 0, auto;
}


