body{
  background-color: white;
  padding: 0px;
  margin: 0px 0px 0px 0px;
}
.button{
  background-color:#CB4900;
  color:white;
  box-shadow: 0px 3px 3px #ccc;
  border:1px solid #2d2d2f;
}
.button:hover{
  background-color:white;
  color:#2d2d2f;
  border:1px solid #CB4900;
}
.header{
  z-index: 10;
  top: 0px;
  bottom: 0px;
  font-family: Arial, Helvetica, sans-serif;
  background: #4c4a4f;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 10px 0px;
  border-bottom: 1px solid black;
  box-shadow: 0px 3px 3px #999;
  color: white;
  position: sticky;
}
.head-flex {
    display: flex;
    align-items: center;
}
.header-title{
       font-family: "Patua One",serif;
       font-size: 1em;
       color:white;
}

.logo-wrap {
    max-width: 100%;
    position: relative;
    z-index: 2;
}
.footer{
  font-family: "Red Hat",sans-serif;
  font-weight:100;
  background: #4c4a4f;
  padding: 5px 0px 5px 0px;
  margin: 5px 0px 0px 0px;
  border-top: 1px solid black;
  color: white;
}
.title {
	font-family: "Patua One",serif;
	color: #000000;
	text-align: center;
	text-shadow: 1px 1px 2px #777;
}
.center {
	text-align: center;
}
.navigation {
  text-align: center;
}  
a:link, a:visited {
  font-size: 16px;
  font-family: "Red Hat",sans-serif;
  color: #2d2d2f;
  font-weight: 400;
  text-decoration:none;
}
a:hover {
  font-family: "Red Hat",sans-serif;
  color: #CB4900;
  font-weight: 400;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 100%;         /* Set a specific width */
  margin: 0% 0% 0% 0%;
  gap: 0px;
  border-radius: 10px;
  overflow: none;
  background-color: #ffffff;
  /*border: 1px solid black;*/
  /*box-shadow: 4px 4px 5px #ccc;*/
}
@media (max-width: 800px){
  .grid-container{
    grid-template-columns:1fr;
  }
}
.centered-div {
    width: 50%;         /* Set a specific width */
    margin-left: auto;  /* Centers the div horizontally */
    margin-right: auto;
    /* Shorthand: */
    /*margin: auto;*/
}
.item{
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-left:20px;
  padding-right:20px;
  width: 90%;
}
.container{
    width: 90%;         /* Set a specific width */
    margin-left: 0px;  /* Centers the div horizontally */
    margin-right: 0px;
  display: flex; /* Makes the container a flex container */
  gap: 0px;     /* Adds spacing between columns */
}

.column {
  font-family: "Red Hat", sans-serif;
  flex: 1;       /* Distributes available space equally among columns */
  padding: 0px;
}
.headshot{
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 3px 3px 3px #999;
}
.bio{
  font-family: "Red Hat",sans-serif;
  padding-top:10px;
  padding-bottom:10px;
  padding-left:0px;
  padding-right:0px;
}

h4 {
  font-family: "Red Hat", sans-serif;
  display: block;
  font-size: 1em; /* Usually the same size as the body text in most browsers */
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: 60;
}
h3 {
  font-family: "Red Hat", sans-serif;
  display: block;
  font-size: 1em;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: 600;
}

details > summary {
  list-style: none; /* For Firefox and older browsers */
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
  content: ""; /* Ensures it's empty even in browsers that use content property */
}

/* Add a custom plus sign before the text */
summary::before {
  content: '+  ';
  /* Add other styling for spacing/color */
}

/* Change the sign to a minus when the details element is open */
details[open] summary::before {
  content: '-  ';
}

.img-thumb {
  /* Forces the image to be 100% of its parent's (the figure's) width */
  width: 100%;
  /* Automatically adjusts the height to maintain the aspect ratio and prevent distortion */
  height: auto;
  /* Optional: Ensures the image displays correctly to prevent mysterious gaps */
  display: block;
}