/* 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: black;
  font-family: Verdana;
  cursor: url('https://www.rw-designer.com/cursor-image/170039-32x32.png'), auto;
}
.right-blinkies {
  float: right;            /* Moves the container to the far right */
  width: 150px;            /* Set this to your blinkie width */
  margin-left: 10px;       /* Adds space between text and blinkies */
  text-align: center;      /* Centers images horizontally */
}

.right-blinkies {
  position: fixed;
  top: 20px;
  right: 10px;
  width: 150px;
  text-align: center;
}
.right-blinkies img {
  display: block;
  margin-bottom: 5px;
}