body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: large;
  background-color: #9B423B;  /* Background color of page. Optimal is to match color on line 64  */
  text-align: center;     /* Center all text on page  */
  }

.center {                 /* Centers any image (in html file) with img class center: <img class="center" src="image.jpg" alt="My Image"> */
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  }

img {                    /* Makes image fit container and resize at various browser sizes   */
  max-width: 100%;
  max-height: 100%;
  display: block;        /* removes extra space below image */
  }
   
article {
  margin:3% 5% 5% 10%;
  background-color: #70413E;
  padding: 3%;
  border-radius: 5px;
  }

footer {                 /* Footer formatting. HTML page must have this below article: <footer> content... </footer>   */ 
  margin: 3% 5% 5% 10%;
  background-color: #151515; 
  padding: 0% 0% 0% 3%;
  border-radius: 5px;
  color: white;
  }
  
ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #151515;    /* Color of top navigation bar */
  }

ul.topnav li {
  float: left;
  }

ul.topnav li a {
  display: block;
  color: white;
  font-weight: bold;
  padding: 14px 16px;
  text-decoration: none;
  }

ul.topnav li a:hover:not(.active) {
  color: black;
  background-color: #70413E;      /* Color of tab on on top navigation bar with mouse-over hover */
  }  

ul.topnav li a.active {
  color: black;
  background-color:  #9B423B;     /* Color of your active tab on the navigation bar. Match or coordinate with body background color on line 5  */
  }

ul.topnav li.right {
  float: right;
  }

@media screen and (max-width: 600px) {
  ul.topnav li.right,
  ul.topnav li {float: none;}
}
p {color:white;}
h1 {color:white;}
.box {
  background: #462B29;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  
}
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}
.card {
  background: #462B29;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1 1 200px;
}
.card a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.card a:hover {
  color:#371D1A;
}

h2 {
  color: var(--primary-color);
  font-size: 25px;
  margin-bottom: 25px;
  font-weight: bold;
  letter-spacing: 1px;
}
.book-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;

}

.book-item {
  background: var(--card-bg);
  padding: 20px;
  margin: 5px 0;
  width: 90%;
  font-size: 20px;
  text-align: left;
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;

}
.book-item:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}
.box {
  transform: translateY(-5px);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}
.book-item em {
  font-style: italic;
  color: var(--hover-color);
  font-weight: 600;
}
.image1 {
  
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Space between images */
  margin-top: 20px;
  flex-wrap: wrap; /
    
}


.image1 img {
  width: 420px; /* Set width */
  height: 470px; /* Maintain aspect ratio */
  max-width: 100%;
  border-radius: 10px;
  display: block;
  border: 2px solid #462B29
}
.resume {
  background: #462B29;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  
}
.resume a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.resume a:hover {
  color:#371D1A;
}



.clickme {
  background: #462B29;
  color: black;
  font-size: 18px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
  display: inline-block;
  margin-bottom: 25px;
}

.clickme a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.clickme:hover {
  background: #6A3E3C;
  color:white;
  transform: scale(1.1);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Custom Collapse CSS for Visibility */
.collapse {
  display: none;
}
.collapse.show {
  display: block;
}

/* Style for the name appearing below the button */
.name-container {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 40px;
  font-weight: bold;
}

#name {
  font-weight: bold;
  color: black;
  font-size: 50px;
}

.image2 {
  
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Space between images */
  margin-top: 20px;
  flex-wrap: wrap; /
    
}


.image2 img {
  width: 400px; /* Set width */
  height: 320px; /* Maintain aspect ratio */
  max-width: 100%;
  border-radius: 10px;
  display: block;
  border: 5px;
  border: 2px solid #462B29
}

article { 
  border: 2px solid white;
 ;
}

hr { border-radius:3px;
  width:100%;
   color:white ;
   height: 1px;
   background-color: aliceblue;
  }

 .g-form-container{
  position: relative;
width:100%;
overflow: hidden;
padding-top:100%;}
.responsive-iframe{position: absolute;
top:0; left:0;
bottom: 0;right:0;
width: 100%;height: 100%;
border:none;}



.form-container {
  background-color: #462B29;
  width: 100%;
  margin: auto; /* Centering the form */
}

/* Styling for the form */
form {
  width: 100%;
}

/* Styling for the text area */
textarea {
  width: 70%; /* Ensures full width */
  height: 300px; /* Increased height */
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical; /* Allows resizing vertically */
  box-sizing: border-box; /* Ensures padding doesn't shrink width */
}

/* Styling for the submit button */
button {
  align-self: flex-end; /* Aligns the button to the right */
  padding: 10px 20px;
  font-size: 16px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px; 
  margin-bottom: 10px; 
  width: 50%;
  border: 2px solid white;
}

.greetings {
color:white;
font-size: 85px;
  text-decoration: underline;
}