body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f6e0;
  color: #080808;
  line-height: 24px;
}

@font-face {
  font-family: 'MyCustomFont';
  src: url('fonts/Florsn39.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyCustomFont2';
  src: url('fonts/Florsn35.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.main_line{
  font-family: 'MyCustomFont2', sans-serif;
  font-size: 44px;
}

.sub_line{
  font-family: 'MyCustomFont', sans-serif;
}

.container {
  max-width: 1000px; /* Change this to have wider left and right columns */
  margin: 0 auto;
  padding: 20px;
}


h3{
  color: #bababa;
  /* font-family: 'Lato', sans-serif; */
  font-weight: 400;
}

header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.profile img {
  width: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}


.main-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
}

.left-column, .right-column {
  width: 100%; /* Initially both columns take full width */
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

.download_resume {
  text-align: center;
  margin-top: 20px;
}

button {
  font-size: 1.1em;
  display: inline-block;
  text-decoration: none;
  margin: 1em;
  padding: 0.5em 1.0em;
  border-radius: 3em;
  border: 3px black solid;
  background: transparent;
  color: black;
  transition: 0.3s;
  /* width: 100px; */
  text-align: center;
  cursor: pointer;
}

button:hover {
  background :rgba(0, 0, 0, 0.1);
  color: black;
}

/* Media query for smaller screens */
@media screen and (min-width: 600px) {
  .left-column, .right-column {
      width: 45%; /* Set columns width for larger screens */
  }
}

.location {
  font-style: italic;
  color: #555; /* Example color */
  padding: 20px 0px;
}

.duration {
  font-weight: bold;
  color: #007bff; /* Example color */
  padding: 20px 0px;
}

.description {
  /* Add styles for description */
  padding: 20px 0px;
}

.projects {
  list-style: none;
  padding: 0;
}

.projects li {
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
}

.projects li a {
  text-decoration: none;
  color: #333;
  display: inline-block;
  padding-left: 20px; /* Space for arrow */
  position: relative;
}

.projects li a:hover {
  text-decoration: underline;
  transform: translateX(5px); /* Move the text slightly to the right */
}


.job_title, .edu_title {
  font-weight: 600;
}

.job-description {
  list-style-type: disc;
  margin: 0;
  padding-left: 20px;
}

.job-description li {
  margin-bottom: 10px;
}

.certifications{
  display: flex;
  gap: 20px;
  }

.certifications li img{
  width: 60px;
  height: 60px;
}

.work-experience li, .contact-info li{
  padding-bottom: 10px;
}

.job-description li{
  padding-bottom: 0px;
}

nav {
  background-color: #333;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav a {
  font-size: 1rem;
  color: #bababa;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: white;
}

nav a:active {
  color: #aaa;
}


.navbar {
  position: sticky;
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /* Adjust transparency as needed */
  backdrop-filter: blur(10px); /* Apply backdrop blur for the glass effect */
  -webkit-backdrop-filter: blur(10px);
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000; /* Ensure the navbar stays on top of other content */
  transition: background-color 0.3s ease; /* Add smooth transition for background color change */
}

.logo img{
  width: 30px;
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  margin-left: auto; /* Move the navbar-nav items to the right */
}

.nav-item {
  margin-left: 20px;
}

.second-part{
  color: #bababa;
}

.first-part{
  font-size: 22px;
}

.footer{
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: black;
}

.contact-section a {
  padding-right: 10px;
}

.contact-section a img{
  width: 30px;
  height: 30px;
}

.contact-section {
  text-align: center;
  margin-top: 50px;
}

.contact-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 16px;
  margin: 30px;
}

.last{
  margin-bottom: 0px !important;
  color: #bababa;
}

.second-part{
  color: #bababa;
}

.first-part{
  color: #f9f6e0;
  font-size: 22px;
  font-weight: 500;
}