* {
    box-sizing: border-box;
    font-family: Georgia, Avenir, Avenir Light;
    color: #eaeaea;
  }
  
  body{
    margin: 10px;
    color: #eaeaea;
    padding: 10px;
    background-color: #231F20;
  }
  
  p{
    text-align: justify;
  }
  
  .navbar::after{
    content: "";
    clear: both;
    display: block;
  }

  .topic::after{
    content: "";
    clear: both;
    display: block;
  }

.header{
    padding-top: 10px;
    width: 100%;
    position: fixed;
    z-index: 1;
  }
  
  .navbar {
    width: 75%;
    overflow: hidden;
    background-color: #231F20;
    float: right;
    padding-top: 13px;
    padding-right: 50px;
  }
  
  .navbar .icon {
    display: none;
  }
  
  .navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #ad974f;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #ad974f;
    min-width: 160px;
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: inherit;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: inherit;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .navbar .icon {
    display: none;
  }
  
  
  .logo{
    width: 20%;
    float: left;
    padding-left: 150px;
    color: #eaeaea;
    overflow: hidden;
    position: fixed;
  }
  
  .logo a{
    overflow: hidden;
    text-decoration: none;
  }
  
  
  .menu a {
    text-align: center;
    color: #eaeaea;
    float: right;
    padding: 10px 12px;
    text-decoration: none;
  }

  .footer {
    background-color: #231F20;
    width: 100%;
    text-align: center;
    color: red;
  }
  
  /*respinsive Styles fo smaller screens */
  @media screen and (max-width: 600px) {
    .navbar.responsive {position: relative;}
    .navbar.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .navbar.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  
  }
  
  @media screen and (max-width: 600px) {
    .navbar a:not(:first-child) {display: none;}
    .navbar a.icon {
      float: right;
      display: block;
    }
  }
  

.resume {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
}

.section {
    margin-bottom: 20px;
}

h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

li{
    color: #555;
}

a {
    color: #007bff;
    text-decoration: none;
}

.job, .project {
    background-color: #eaeaea;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}


.topic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
  }

  .topic button {
    font-size: 26px;
    background-color: #ad974f;
    color: #eaeaea;
    border: inherit;
    font-weight: bold;
    margin-bottom: 20px;    ;
  }