
/**/
:root {
  --carbon_black: #252422;/*Carbon Black*/
  --charcoal_brown: #403D39;/*Charcoal Brown*/
  --floral_white: #FFFCF2;/*Floral White*/
  --paprika_orange: #EB5E28;/*Paprika*/
  --silver: #CCC5B9;/*Silver*/
  
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu;
  background: var(--carbon_black);
  color: var(--floral_white);
  line-height: 1.65;
}

nav {
  padding: 1rem;
  
  
}

nav a {
  color: var(--charcoal_brown);
  margin-right: 1rem;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
  text-decoration: underline
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

h1, h2, h3, h4 {
  line-height: 1.3;
}


h2 {
  margin-top: 3rem;
  border-bottom: 1px solid var(--paprika_orange);
  padding-bottom: 0.4rem;
}

h3 {
  color: var(--paprika_orange);
}

h4 {
  color: var(--paprika_orange);
}


p {
  color: var(--floral_white);
}

ul {
  padding-left: 1.25rem;
}

code {
  background: var(--floral_white);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  color: var(--charcoal_brown);
}

pre {
  background: var(--carbon_black);
  border: 1px solid var(--paprika_orange);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: visible;
}

pre code {
  padding: 0;
}

hr {
  border: none;
  background-color : var(--paprika_orange);
  height: 1px;
}

a, a:visited {
  color: var(--silver);
}


/*Table Styling*/

table {
  width: 100%;
  border-collapse: collapse; 
  margin: 1.5rem 0;
}

th, td {
  border: 1px solid var(--paprika_orange);
  padding: 0.6rem 0.75rem;
  border-width: 2px;
  text-align: center;
  width: 30rem;

}

th {
  background: var(--carbon_black);
  font-weight: 600;
}



/*Topper Styling*/
#HeaderWrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--carbon_black);
}

#Default_Title_Bar {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
}

/* Push links to the right */
#Default_Title_Bar .TopLinks {
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
}

/* Keep profile pic at far right */
#ProfilePic {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  height: 55px;
}

#Default_Nav_Bar {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--paprika_orange);
}

/* Push the nav to the right */
#Default_Nav_Bar nav {
  display: flex;
  gap: 1.5rem;
}





.info {
  background: var(--paprika_orange);
  border-left: 4px solid var(--paprika_orange);
  padding: 1rem;
  border-radius: 6px;
}


.site-footer {
  
  padding: 1rem 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.site-footer a {
  color: var(--link);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-subtext {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

#center_text {
  text-align: left;
}

.pmh_logo{
  height:75px;
  width:75px;
}

.pmh_logo_cell{
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
}

.float_img{
  float: right;
  margin: 125px 0 20px 20px; /* space between image and text */
  background-color: var(--silver);
  border-radius: 12px; /* controls roundness */
  padding: 10px;
  height:200px;
  width:200px;
}


link{
  background-color: var(--silver);
  border-radius: 12px; /* controls roundness */
}