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

@font-face {
  font-family: 'MyCyberAngel'; /* This is the nickname you give the font */
  src: url('/fonts/Cyber Angel.ttf') format('truetype'); 
}
body {
  background-color: #d3aafa;
  color: purple;
  font-family: MyCyberAngel, sans-serif;
  cursor: url('/shooting star.png'), auto !important;
  
}

a:hover, button:hover, .clickable:hover {
  cursor: url('/purplestar.png') 5 5, pointer !important;
  

.left-container {
  float: left;
  width: 65%;
}

.right-container {
  float: right;
  width: 30%;
}

.right-container img {
  width: 100%;
  display: block;
  margin-bottom: 5px; /* Spaces them out */
}
}