body {
    background-color: whitesmoke;
  }
  .navbar ul {
    display: flex;
    list-style: none;
    padding-right: 140px;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.navbar ul li a:hover {
    background-color: aqua;
}
#home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #f8f8f8;
    }
    
    .home__left img {
      padding-left: 10px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    }
    
    .home__right h2 {
      padding-right: 50px;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    }
    
    .home__right h2 span {
    font-size: 24px;
    font-weight: normal;
    }
    
    .home__right p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    }
    .button {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
      }
      
      .button a {
        display: inline-block;
        padding: 10px 20px;
        margin: 10px;
        text-decoration: none;
        color: white;
        background-color: lightblue;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s ease;
      }
      
      .button a:hover {
        background-color: blue;
        background-color: blue;
      }
      
    
    .social__icons {
    display: flex;
    }
    
    .social__icons a {
    margin-right: 10px;
    }
    
    .social__icons i {
    font-size: 24px;
    color: #333;
    }
    
    .social__icons i:hover {
      color: #fff;
      box-shadow: inset 200px 0 0 0 blue;;
    }
    
    #skills {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
      }
      .skills-list li:hover {
        background-color: #f2f2f2;
        color: #333;
      }
        
      .project_card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
        max-width: 900px;
        height: 150px;
        padding: 20px;
        text-align: center;
        }
      
      .skills-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      
      .skills-list li {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 20px;
      }
      
      .skills-list li i {
        font-size: 48px;
        margin-bottom: 10px;
      }
      
    #Contacts {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh; 
      }
      
      .card {
        text-align: center;
        max-width: 500px; 
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 10px;
      }
      
    #projects {
    background-color: #f2f2f2;
    padding: 70px 0;
    }
    
    .container {
    max-width: 1000px;
    margin: 0 auto;
    }
    
    .project__card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    }
    
    .card-body {
    margin-bottom: 20px;
    }
    
    .project__card card img {
      width: 500px; 
      height: auto; 
      margin-bottom: 10px; 
    }
    
    #Testimonials {
        background-color: #f2f2f2;
        padding: 50px;
    }
    .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      }
    .card {
    width: 30%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .card h2 {
    font-size: 24px;
    margin-bottom: 10px;
    }
    
    .card img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 50px;
    }
    
    .card p {
    font-size: 16px;
    line-height: 1.5;
    }
    
    
    footer {
    background-color: #f2f2f2;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    }