/* Background flag styling */

/* General body styling joe test*/
body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 1;
}

/* Site title at the top */
.site-title {
  text-align: center;
  font-size: 3em;
  margin-top: 40px;
  margin-bottom: 10px;
}

/* Navigation menu styling joe test */
.menu-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  background-color: #111;
  padding: 10px 0;
}

/* Menu links */
.menu-bar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-bar a:hover {
  text-decoration: underline;
}

.background-flag {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("/saltire.jpg");
  /* background-image: url(https://as1.ftcdn.net/v2/jpg/00/82/41/76/1000_F_82417677_UDSc0XK88wNMPSTAsYA8STqnGsmEsblD.jpg); */
  background-size: cover;
  background-position: center;
  opacity: 0.05; /* Soft and subtle */
  z-index: 0;
  pointer-events: none;
}
