@charset "UTF-8";
/* CSS Document */

/* Define the custom font */
@font-face {
  font-family: 'CustomFont'; /* Name your font family */
  src: url('AJensonPro-Regular.otf') format('opentype'); /* Specify font format */
}

/* Define the custom italic font */
@font-face {
  font-family: 'CustomItalicFont';
  src: url('AJensonPro-It.otf') format('woff2'), /* Modern browsers */
       url('AJensonPro-It.otf') format('woff');  /* Older browsers */
  font-style: italic;
  font-weight: normal;
}

@font-face {
  font-family: 'CustomStrongFont';
  src: url('AJensonPro-Bold.otf') format('woff2'), /* Modern browsers */
       url('AJensonPro-Bold.otf') format('woff');  /* Older browsers */
  font-style: strong;
  font-weight: normal;
}

/* Use the custom font in your body */
body {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh; /* Full viewport height */
  font-family: 'CustomFont'; /* Use fallback fonts */

}

/* Apply the custom font to the <em> tag */
em {
  font-family: 'CustomItalicFont', serif; /* Fallback to serif if the font doesn't load */
  font-style: italic;
}

strong {
  font-family: 'CustomStrongFont', serif; /* Fallback to serif if the font doesn't load */
  font-style: strong;
  font-size: 26px;
  
}



/* Use the custom font in your body */
body {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh; /* Full viewport height */
  font-family: 'CustomFont'; /* Use fallback fonts */

}

sup {
  font-size: 0.75em;
  vertical-align: super;
  line-height: 1; /* Adjust vertical spacing */
  color: #007acc; /* Match the color of footnote links */
  cursor: pointer; /* Add a pointer to indicate interactivity */
}

/* Styling the ordered list for footnotes */
ol {
  font-family: Georgia, serif;
  font-size: 0.9em;
  line-height: 1.6;
  margin-top: 1em;
  padding-left: 1.5em; /* Indent the list */
  color: #555;
}

ol li {
  margin-bottom: 0.5em; /* Add spacing between footnotes */
}

/* Styling links in the footnotes */
ol li a {
  color: #007acc;
  text-decoration: none;
  border-bottom: 1px dotted #007acc; /* Underline effect for links */
}

ol li a:hover {
  color: #005f99;
  border-bottom: 1px solid #005f99; /* Change hover style */
}

#menu {
  width: 300px; /* Fixed width for the menu */
  min-width: 200px; /* Prevent shrinking below this width */
  background-color: #FFFEFE; /* Light gray background */
  padding: 20px;
  box-sizing: border-box; /* Include padding in width/height calculations */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

}

#menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#menu li {
  margin: 10px 0;
}

#menu a {
  text-decoration: none;
  color: #000000;
  font-size: 20px;
  line-height: 1.5; /* Consistent line height */
  margin: 0;
  padding: 0;
}

#menu a:hover {
  color: #007BFF; /* Highlight color on hover */
}

#content {
  flex-grow: 1; /* Allow content to take up the remaining space */
  display: flex;
  align-items: flex-start; /* Align content to the top */
  padding: 0px;
  box-sizing: border-box; /* Include padding in height calculations */

}


#portfolio {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align to the top */
  margin: 0;
  padding: 0;
}


