/* 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-image: url('lepoardprint.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    font-family: Arial;
}

::selection {
  background: #ffb7b7; /* Highlight color */
  color: #000000; /* Text color */
}


.my-square {
    width: 700px;       /* Width of the square */
    height: 700px;      /* Height of the square (equal to width) */
    background-color: #C4C4CF; /* Color of the square */
    border: 2px solid gray;   /* Optional: adds a border */
}


.mark {
  background-color: #FFB7B7; /* Changes the highlight color to a light red */
}
