
h3 {
    color:#fffffe;
  }

body{
    background-color:#f9f4ef;
}

.navbar {
  display: flex;               /* Use flexbox for alignment */
  justify-content: center;     /* Center items in the navbar */
  align-items: center;         /* Center items vertically */
  background-color: #8c7851;   /* Background color for the navbar */
  padding: 10px 20px;          /* Padding for the navbar */
  position: fixed;              /* Fixed position */
  top: 0;                      /* Align to the top */
  width: 80%;                  /* Width of the navbar */
  left: 50%;                   /* Start from the center */
  transform: translateX(-50%); /* Center it horizontally */
  z-index: 1000;               /* Ensure it’s above other content */
  border-radius: 15px;         /* Curved corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for depth */
  overflow: hidden;            /* Prevent overflow issues */
}

.right {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2 rem;            /* Base font size for larger screens */
  white-space: nowrap;         /* Prevent wrapping to a new line */
}

.right h2 {
  margin: 0 10px;              /* Add spacing between headings */
  display: inline;             /* Keep headings inline */
}

.right a {
  text-decoration: none;       /* Remove underline from links */
  color: #fffffe;        /* Text color */
}

/* Media Query for Smaller Screens */
@media (max-width: 1500px) {
  .right {
      font-size: 4.8px;         /* Smaller font size for smaller screens */
  }

  .right h2 {
      margin: 5px;             /* Adjust margin for smaller screens */
  }
}

@media (max-width: 400px) {
  .right {
      font-size: 1.6 rem;       /* Further decrease font size for very small screens */
  }
}







  
  #insta{
  
    display: block;
    margin: 0 auto;
  }

  #Submit{
    background-color: red;
  }

  .text-container {
    padding-top: 0px;
    white-space: nowrap;
    font-size: 2rem;
    color: #ffffff;
    display: flex;                     /* Use Flexbox */
    justify-content: center;           /* Center horizontally */
    align-items: center;               /* Center vertically */
    height: 10vh;  
}


.Achievement {
  text-align: left;
  padding-left: 320px; /* Adjust padding to move bullets */
  list-style-type: disc; /* You can also customize bullet style */
  color: #8c7851;
  font-size: 16px;
  padding-top: 100px;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 800px;
  max-height: 800px;
  overflow-y: auto;
  margin: auto;
  background: #ffffff;
  padding: 100px;
  border-radius: 8px;
  border: 1px solid #000000; /* Set border thickness, style, and color */
}


@media (max-width: 600px) {
.Achievement{
	font-size:12px;
	padding-left:20px;
	padding-top:50px;
}
}

.aboutme {
  text-align: left;
  color: #8c7851;
  font-size: 19px;
  padding: 30px 20px; /* Reduced side padding */
  max-width: 800px; /* Set a max width for larger screens */
  margin: 0 auto; /* Center the container */
  word-wrap: break-word; /* Ensure long words break */
  font-family: Arial, Helvetica, sans-serif;
  
  
}

.tree {
  max-width: 800px;
  max-height: 800px;
  overflow-y: auto;
  margin: auto;
  background: #ffffff;
  padding: 100px;
  border-radius: 8px;
  border: 1px solid #000000; /* Add border thickness, style, and color */

  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center; /* Centers text inside the container */
}

details {
  margin-bottom: 10px;
}

summary {
  font-weight: bold;
  cursor: pointer;
  outline: none; /* Remove outline on click */
  color: #8c7851;
}

ul {
  list-style-type:circle;
  padding-left: 20px; /* Indent sub-items */
  display: none; /* Initially hidden */
  color: #8c7851;
}

details[open] ul {
  display: block; /* Show when open */
}

@media (max-width: 600px) {
.tree{
	font-size: 16px;
	padding: 50px;
  

}
}

/* Three image containers (use 25% for four, and 50% for two, etc) */
.row {
  padding-left:0px;	
  display: flex; /* Use Flexbox for layout */
  justify-content: center; /* Center the columns horizontally */
}

.column1, .column2 {
  justify-content:center;
  width: 5.03%; /* Keep the same width */
  padding: 15px; /* Add padding */
}

/* Optionally, you can remove margins for better alignment */
.column1 {
  margin-left: 0; /* Remove left margin */
}

.column2 {
  margin-left: 0; /* Remove left margin */
}

.SubmissionForm {
  max-width: 500px; /* Set max width for the form */
  margin: auto; /* Center the form */
  padding: 20px; /* Add padding */
  border: 1px solid #ccc; /* Border for the form */
  border-radius: 8px; /* Round corners */
  background-color: #ffffff; /* Background color */
}

.MyFirstProject {
  max-width: 700px; /* Set max width for the form */
  margin: auto; /* Center the form */
  padding: 20px; /* Add padding */
  border: 1px solid #ffffff; /* Border for the form */
  border-radius: 8px; /* Round corners */
  background-color:#ffffff; /* Background color */
  border-color: #000000;
}



table {
  width: 100%; /* Make the table full width */
}

th {
  text-align: left; /* Align text to the left */
  padding: 10px; /* Space around table cells */
}

input, select, textarea {
  width: 100%; /* Full width for inputs */
  padding: 8px; /* Padding inside fields */
  border: 1px solid #ccc; /* Border for fields */
  border-radius: 4px; /* Round corners for fields */
}

button {
  padding: 10px 15px; /* Padding for the button */
  border: none; /* No border */
  border-radius: 4px; /* Round corners */
  background-color: green; /* Button color */
  color: white; /* Text color */
  cursor: pointer; /* Pointer cursor on hover */
}

button:hover {
  background-color: darkgreen; /* Darker color on hover */
}

a {
  color: rgb(0, 0, 0) !important; /* Change to your desired link color */
  text-decoration: none !important; /* Removes underline */
}

a:visited {
  color: rgb(0, 0, 0) !important; /* Same as unvisited link */
  text-decoration: none !important; /* No underline */
}

@media (max-width: 600px) {
  .text-container {
      width: 90%; /* Adjust width for smaller screens */
  }
}


