body{
    font-family: Montserrat, sans-serif;
    background: #333333;
  }
  .container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    user-select: none;
    margin: 100px auto;
    background: #231e39;
    color: #b3b8cd;
    border-radius: 5px;    
    text-align: center;
    box-shadow: 0 10px 20px -10px rgba(0,0,0,.95);
    max-width: 800px;
  }

  .profile-card {
    width: calc(50% - 20px); /* Two cards in one row with a gap */
    background: #231e39;
    border-radius: 5px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .95);
    color: #b3b8cd;
    text-align: center;
  }
  
  .cover-photo{
    background: url(https://images.unsplash.com/photo-1540228232483-1b64a7024923?ixlib=rb-1.2.1&auto=format&fit=crop&w=967&q=80);
    /* background-position: center; */
    /* background-size: cover; */
    height: 160px;
    width: 100%;
    border-radius: 5px 5px 0 0;
  }
  .profile{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    margin: 93px auto 0; /* Center image in card */
    border: 1px solid #222;
    padding: 7px;
    background: #222;
  }
  .profile-name{
    font-size: 25px;
    font-weight: bold;
    margin-top: 75px;
  }
  
.about {
  margin-top: 10px;
  line-height: 21px;
  font-size: 18px;
}
  
  .container i{
    padding: 0px 20px;
    font-size: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: .5s;
  }
  .container i:hover{
    color: #03bfbc;
  }
  .container a{
    color: #b3b8cd;
  }
  
.skills {
    background-color: #1f1a36;
    text-align: left;
    padding: 15px;
    margin-top: 30px; 
    margin-bottom: 30px;
  }
  .skills>h6{
    margin-top: 0px;
    font-size: 17px;
    margin-bottom: 10px;
  }
  .skills ul {
    
   list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .skills ul li {
    border: 1px solid white;
    border-radius: 2px;
    display: inline-block;
    font-size: 15px;
    margin: 0 7px 7px 0;
    padding: 7px;
  }



  @media (max-width: 425px) {
    .profile-card {
      width: 100%; /* Make each card take full width on smaller screens */
    }
    .container{
      gap: 40px;
    }
  }