/* 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 {
  color: white;
  font-family:"Times New Roman", Times, serif;
  background-color: black;
}

a {
  color: yellow;
  }
  
#homepage {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
}

#homepage a {
  display: block;
  margin-bottom: 6px;
}

#homepage img {
  display: block;
}

#homepage a img {
  width: 120px;
}

#homepage a:last-child img {
  width: 100px;
}

h1, h3, p {
      text-align: center;
    }
    
    a:hover {
    cursor: url("media/cursorlink.png"), pointer;
}
    a {
    cursor: url("media/cursor.png"), pointer;
}

/* For when the page is viewed in a smaller screen, like mobile: */
/* If screen is less than 800px wide (phone) */
@media (max-width: 800px) {
  body {
    font-size: 20px;
    background-color: lightgray;
  }
  
  .span {
      max-width: 90vw;
      height: auto;
    }
    #homepage {
      position: absolute;
      top: 60vh;
      left: 10vw;
      }
    
}