/* Reset default styles */
body, h1, h2, h3, p, ul, li, img, form {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: bold
  }
  body{
    background-color:burlywood;
    color: rgb(22, 22, 71);
    line-height: 1.6;
    padding: 20px;
  }
   /* Navigation styles */
   nav{
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0px;
    padding-left: 10%;
    padding-right: 10%;
    background-color: rgb(17, 17, 17);
   }
   .logo{
    color:  rgb(130, 165, 219);
    font-size: 28px;
   }
   span{
    color: rgb(241, 236, 236);
   }
   nav ul li {
    list-style-type: none;
    display: inline-block;
    padding: 5px 5px;
   }
   nav ul li a{
    color: rgb(130, 165, 219);
    text-decoration: none;
    font-weight:bold;
  }
  nav ul li a:hover{
    color:burlywood;
    transition: 0.3s;
  }
   /* Section styles */
   section {
    margin-bottom: 15px;
  }
  section h2{
    margin-bottom: 8px;
  }
  section p{
    margin-bottom: 8px;
  }
  /* About section styles */
  section#about img{
    max-width: 100%;
    max-height: 45vh;
    margin-top: 8px;
  }
  /* Skills section styles */
  section#skills ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center
  }
  section#skills li{
    list-style-type: none;
    display: block;
    margin: 8px;
    padding: 5px 7px;
    background-color:rgb(215, 209, 221);
    border:1px solid rgb(211, 139, 139);
    border-radius: 5px;
  }
  /*Experience section*/
  section#experience .job{
    margin-bottom: 15px;
  }
  section#experience .job h3 {
    margin-bottom: 5px;
  }
  /* Projects section styles */
  section#projects .project {
    margin-bottom: 20px;
  }
  
  section#projects .project h3 {
    margin-bottom: 5px;
  }
  
  section#projects .project p {
    margin-bottom: 10px;
  }
  
  section#projects .project a img {
    max-width: 100%;
    height: auto;
  }
  
  /* Contact section styles */
  section#contact form {
    margin-bottom: 10px;
  }
  
  section#contact form label,
  section#contact form input,
  section#contact form textarea,
  section#contact form button {
    display: block;
    width: 100%;
  }
  
  section#contact form label {
    margin-bottom: 5px;
  }
  
  section#contact form input,
  section#contact form textarea {
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  section#contact form button {
    background-color: #333;
    color: rgb(118, 230, 13);
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  section#contact .social-media {
    margin-top: 10px;
  }
  
  section#contact .social-media a {
    margin-right: 5px;
  }
  
  /* Footer styles */
  footer {
    text-align: center;
    padding: 10px;
    background-color: rgb(37, 33, 33);
    color: rgb(58, 235, 14);
  }
  
  footer p {
    margin: 0;
  }
  
  