/* 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: 'rum'; /* A name you choose to use later */
  src: url('/assets/font/the-rum-is-gone-font/TheRumIsGone-Wy1nG.ttf') format('truetype'); /* Path to your TTF file */
  font-weight: normal; /* Define the weight of this specific file */
  font-style: normal;  /* Define the style of this specific file */
  font-display: swap;  /* Controls how the font loads (improves user experience) */
}


body {
  background-image: url("/assets/photos/piratebackground.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;


  h1 {
  font-family: 'rum'; /* Use the custom font for this class */
  font-size: 44px; /* Adjust the size as needed */
  color: #000; /* Set a color for the text */
  }

  ul {
    list-style-type: none; /* Remove default bullet points */
    padding: 0; /* Remove default padding */
    margin: 20px 0; /* Add some margin for spacing */
  };

  ul li {
  float: left; /* Float list items to the left to display them horizontally */
  };

  ul li a{
    display: inline-block; /* Display list items horizontally */
    margin: 0px 10px; /* Add some horizontal spacing between items */;
  };

  ul li a img {
    width: 100px; /* Set a specific width for the images */
    height: auto; /* Maintain aspect ratio */
  };

}