/* codewithcurious.com */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
  }
  
  /* Navigation Bar */
  nav {
    background-color:#DCFFB7;
    color:#000;
    padding: 20px;
  }
  
  /* .logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
  } */
  
  .nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;

  }
  
  .nav-links li {
    margin-right: 50px;
  }
  
  .nav-links li a {
    color: #0f0f0f;
    text-decoration: none;
    padding: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  /* Hero Section */
  header {
    background-color:#FF6868;
    color: #fdf9f9;
    padding: 50px;
    text-align: center;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  
  /* About Me Section */
  #about {
    padding: 50px;
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  
  /* Skills Section */
  #skills {
    padding: 50px;
    background-color:#f0d5b2;
    text-align: center;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .skills-list {
    list-style-type: none;
    padding: 0;
  }
  
  .skills-list li {
    display: inline-block;
    margin: 0 10px;
  }
  
  /* Projects Section */
  #projects {
    padding: 50px;
    text-align: center;
    background-color: #eee7e3;
    font-family: 'Courier New', Courier, monospace;
  }
  
  .project {
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  }
  
  .project a {
    display: block;
    margin-top: 10px;
  }
  
  /* Contact Section */
  #contact {
    padding: 50px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
  }

  
  #contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Times New Roman', Times, serif;
  }
  
  #contact-form label {
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
  }
  
  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
  }
  
  #contact-form button {
    background-color:#FFEAA7;
    color: #614949;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  /* Footer */
  footer {
    background-color: #E9F6FF;
    color: #000;
    padding: 20px;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }