body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: Edge 12;
  flex-direction: column;
  min-height: 0vh;
}

header {
  background-color: #a09898;
  color: #1f0505;
  text-align: center;
  padding: 175px 0;
}

header h1 {
  margin: 0;
}

header p {
  font-style: italic;
  margin: 10px 0;
}

nav {
  background-color: #303d4b;
  text-align: left;
  margin: 0 auto;
  color: #fff;
  padding: 20px 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav li {
  margin: 0 15px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0s ease;
}

nav a:hover {
  color: #0056b3;
}

.scrollable-section {
  width: 600px;
  position: relative;
  /* align-items: center; */
  justify-content: center;
  max-height: 400px;
  overflow: scroll;
  margin: 40px;
  /* Add margin to create spacing between blocks */
}

/* Add this if you want spacing between columns */
.scrollable-section + .scrollable-section {
  margin-left: 50px;
}

/* Add this if you want spacing between rows */
.row {
  margin-top: 10px;
}

.scrollable-section::-webkit-scrollbar {
  display: none;
  /* Hide the scrollbar for WebKit browsers (Chrome, Safari, etc.) */
}

.scrollable-section {
  scrollbar-width: none;
  /* Hide the scrollbar for Firefox */
}

section {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px 0;
}

.project-item {
  margin-bottom: 20px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.project-item h3 {
  color: #333;
  font-size: 1.2em;
}

.project-item p {
  color: #666;
  font-size: 0.9em;
}

footer {
  background-color: hsla(204, 2%, 45%, 0.981);
  color: #fff;
  text-align: center;
  padding: 1px 0;
}

footer p {
  margin: 0;
}

.project-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.project-item {
  width: 48%;
  padding: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: auto;
  /* Allow scrolling within the block */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.project-item h3 {
  color: #333;
  font-size: 1.1em;
}

.project-item p {
  color: #666;
  font-size: 0.9em;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 30px;
  color: #1f0505;
}

h3 {
  font-size: 30px;
}

table {
  border-collapse: collapse;
  width: 90%;
  /* Adjust the width as needed */
  margin: 10px auto;
  /* Center the table on the page */
}

table,
th,
td {
  border: 3px solid #000;
  /* Border styling */
}

th,
td {
  padding: 10px;
  /* Adjust the padding to increase cell size */
  text-align: center;
}

.circular-image {
  position: absolute;
  bottom: 130px;
  /* Adjust the distance from the bottom */
  right: 100px;
  /* Adjust the distance from the right */
  width: 180px;
  /* Adjust the width of the circular image */
  height: 180px;
  /* Adjust the height of the circular image */
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.circular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* styles.css */
/* Add this CSS to your existing styles */

/* Form Item Styling */
.form-item {
  margin-bottom: 15px;
}

/* Form Group Styling */
.form-group {
  margin-bottom: 1px;
}

/* Input Styling */
.form-control {
  width: 50%;
  padding: 5px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box; /* Ensure padding and border are included in the width */
  display: block; /* Make it a block-level element */
  margin: 0 auto; /* Center the element horizontally */
}

/* Textarea Styling */
/* Center Textarea Styling */
textarea {
  width: 40%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box; /* Ensure padding and border are included in the width */
  display: block; /* Make it a block-level element */
  margin: 0 auto; /* Center the element horizontally */
}

/* Button Styling */
.btn {
  background-color: #da0d0d;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  box-sizing: border-box; /* Ensure padding and border are included in the width */
  display: block; /* Make it a block-level element */
  margin: 0 auto; /* Center the element horizontally */
}

/* Button Hover Styling */
.btn:hover {
  background-color: #72d323;
}
