@charset "utf-8";
/* CSS Document */

body {

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	color: white;
	margin: 0px;
	
	  background-image: url('assetts/bg_angel_cropped.jpg');
      background-size: cover;
      background-position: left center;
      background-repeat: repeat;
	  background-color: #000000;
}

	    .overlay {
      height: 100%;
      background: rgba(0, 0, 0, 0.55);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
    }
	    .heading {
	  margin-top: 30px;
      font-size: 44pt;
      text-shadow: 2px 2px 4px black;
      margin: 0;
    }

    .subtitle {
      margin-top: 40px;
	  margin-bottom: 40px;
      font-size: 22pt;
      text-shadow: 2px 2px 4px black;
      max-width: 600px;
		text-align: center;   /* centers the text inside */
		margin-left: auto;    /* centers the block itself */
		margin-right: auto;
    }
/* Reset the default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Style for the navigation bar */
.navbar {
    background-color: black;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-evenly; /* Evenly distribute buttons horizontally */
    align-items: center; /* Vertically center the buttons */
}

/* Style for the navigation list (no list bullets) */
.nav-list {
    display: flex;
    list-style-type: none;
    width: 100%; /* Ensure the nav-list takes up full width */
    justify-content: space-evenly; /* Space buttons evenly across the top */
}

/* Style for each navigation link (button) */
.nav-list li {
    display: inline; /* Ensure items stay in a row */
}

.nav-list a {
    display: block;
    width: 70px; /* Button width */
    height: 30px; /* Button height */
    background-color: black;
    color: white;
    text-align: center;
    line-height: 20px; /* Vertically centers the text */
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px; /* Optional: adds rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

/* Hover effect for navigation buttons */
.nav-list a:hover {
    background-color: #e19643;
    color: black;
}
 /* TABLE (background image container) */
    table.content-table {
      width: 70%;
      height: 70%;
    margin-left: auto;
    margin-right: auto;
      background-image: url('assetts/bg_scroll.jpeg');
      background-color: rgba(255, 255, 255, 0.85);
      background-size: cover;
      background-position: center;
      background-repeat: repeat;
      border-collapse: collapse;
    }

    /* TABLE CONTENT (text styling only) */
    td.table-body {
      padding: 20px;
      text-align: center;

      font-family: Century Gothic, sans-serif;
      font-size: 12pt;
      color: black;

    }
	      img.wrap {
      float: left;
      margin: 0 15px 15px 0; /* space around image */
      padding: 5px;          /* optional inner padding */
    }
.nav-link a {
    display: block;
    width: 200px; /* Button width */
    height: 60px; /* Button height */
    background-color: black;
    color: white;
    text-align: center;
    line-height: 30px; /* Vertically centers the text */
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px; /* Optional: adds rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

/* Hover effect for navigation buttons */
.nav-link a:hover {
    background-color: #e19643;
    color: black;
}